2021-02-07 19:23:28 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Card.h"
|
|
|
|
#include "CPU.h"
|
|
|
|
#include "Common.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2021-02-25 16:31:24 +00:00
|
|
|
namespace sa2
|
|
|
|
{
|
|
|
|
|
|
|
|
const std::string & getCardName(SS_CARDTYPE card);
|
|
|
|
const std::string & getApple2Name(eApple2Type type);
|
|
|
|
const std::string & getCPUName(eCpuType cpu);
|
|
|
|
|
|
|
|
}
|