mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 07:31:32 +00:00
15 lines
261 B
C
15 lines
261 B
C
|
#ifndef CLASSIC_H
|
||
|
#define CLASSIC_H
|
||
|
|
||
|
#include "LaunchMethod.h"
|
||
|
|
||
|
class Classic : public LaunchMethod
|
||
|
{
|
||
|
public:
|
||
|
virtual std::string GetName() { return "classic"; }
|
||
|
|
||
|
virtual std::unique_ptr<Launcher> MakeLauncher(variables_map& options);
|
||
|
};
|
||
|
|
||
|
#endif // CLASSIC_H
|