mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 15:25:35 +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
21 lines
662 B
C++
21 lines
662 B
C++
#include "blacksimfreefunctions.h"
|
|
#include "fsx/simconnectutilities.h"
|
|
#include "fscommon/aircraftcfgentrieslist.h"
|
|
#include "fscommon/aircraftmappinglist.h"
|
|
#include "simulatorinfo.h"
|
|
|
|
namespace BlackSim
|
|
{
|
|
|
|
void registerMetadata()
|
|
{
|
|
BlackSim::CSimulatorInfo::registerMetadata();
|
|
BlackSim::FsCommon::CAircraftCfgEntries::registerMetadata();
|
|
BlackSim::FsCommon::CAircraftMapping::registerMetadata();
|
|
BlackSim::FsCommon::CAircraftCfgEntriesList::registerMetadata();
|
|
BlackSim::FsCommon::CAircraftMappingList::registerMetadata();
|
|
BlackSim::Fsx::CSimConnectUtilities::registerMetadata();
|
|
}
|
|
|
|
} // namespace
|