mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +00:00
14 lines
324 B
C
14 lines
324 B
C
|
#pragma once
|
||
|
|
||
|
#include "LaunchMethod.h"
|
||
|
|
||
|
class SharedFile : public LaunchMethod
|
||
|
{
|
||
|
public:
|
||
|
virtual std::string GetName() { return "shared"; }
|
||
|
virtual void GetOptions(options_description& desc);
|
||
|
virtual bool CheckOptions(variables_map& options);
|
||
|
|
||
|
virtual std::unique_ptr<Launcher> MakeLauncher(variables_map& options);
|
||
|
};
|