mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 21:56:43 +08:00
* setup will provide some metadata about the flight simulator, such as path, version etc. * there will be a sim independent setup class, providing common information such as path, is simulator installed, etc. * a sim dependent class on top will provide the values specific to one sim * setup will contain the logic to fetch its values: setup->init
15 lines
233 B
C++
15 lines
233 B
C++
#include "simulatorsetup.h"
|
|
|
|
namespace BlackSim
|
|
{
|
|
void CSimulatorSetup::setSettings(const BlackMisc::CIndexVariantMap &map)
|
|
{
|
|
this->m_setup = map;
|
|
}
|
|
|
|
void CSimulatorSetup::init()
|
|
{
|
|
// void
|
|
}
|
|
}
|