mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 03:05:15 +00:00
26 lines
336 B
C++
26 lines
336 B
C++
#include "LaunchMethod.h"
|
|
|
|
LaunchMethod::LaunchMethod()
|
|
{
|
|
|
|
}
|
|
|
|
LaunchMethod::~LaunchMethod()
|
|
{
|
|
|
|
}
|
|
|
|
void LaunchMethod::GetOptions(boost::program_options::options_description &desc)
|
|
{
|
|
}
|
|
|
|
bool LaunchMethod::CheckPlatform()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
bool LaunchMethod::CheckOptions(boost::program_options::variables_map &options)
|
|
{
|
|
return true;
|
|
}
|