mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-04 13:06:01 +00:00
16 lines
292 B
C++
16 lines
292 B
C++
#ifndef CLASSIC_H
|
|
#define CLASSIC_H
|
|
|
|
#include "LaunchMethod.h"
|
|
|
|
class Classic : public LaunchMethod
|
|
{
|
|
public:
|
|
virtual std::string GetName() { return "classic"; }
|
|
|
|
virtual bool CheckPlatform();
|
|
virtual std::unique_ptr<Launcher> MakeLauncher(variables_map& options);
|
|
};
|
|
|
|
#endif // CLASSIC_H
|