mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 18:46:30 +00:00
15 lines
277 B
C++
15 lines
277 B
C++
#ifndef CARBON_METHOD_H
|
|
#define CARBON_METHOD_H
|
|
|
|
#include "LaunchMethod.h"
|
|
|
|
class Carbon : public LaunchMethod
|
|
{
|
|
public:
|
|
virtual std::string GetName() { return "carbon"; }
|
|
|
|
virtual std::unique_ptr<Launcher> MakeLauncher(variables_map& options);
|
|
};
|
|
|
|
#endif // CARBON_METHOD_H
|