mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-16 13:05:36 +00:00
14 lines
336 B
C++
14 lines
336 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);
|
|
};
|