mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +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
|