c416eee9df
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
16 lines
265 B
C++
16 lines
265 B
C++
#pragma once
|
|
|
|
#include "Card.h"
|
|
#include "CPU.h"
|
|
#include "Common.h"
|
|
|
|
#include <string>
|
|
|
|
namespace sa2
|
|
{
|
|
|
|
const std::string & getCardName(SS_CARDTYPE card);
|
|
const std::string & getApple2Name(eApple2Type type);
|
|
const std::string & getCPUName(eCpuType cpu);
|
|
|
|
}
|