Exemple #1
0
        internal SimDatarefs(XPlaneData data)
        {
            m_data = data;

            Cockpit  = new CockpitDatarefs(data);
            Aircraft = new AircraftDatarefs(data);
        }
Exemple #2
0
 public XPlaneApi(ILog log, IConfiguration config)
 {
     Log        = log;
     Config     = config;
     Messages   = new XPlaneMessages();
     Data       = new XPlaneData();
     Commands   = new XPlaneCommands();
     Processing = new XPlaneProcessing();
 }
Exemple #3
0
 public XPlaneApi(ILog log, IConfiguration config)
 {
     Log        = log;
     Config     = config;
     Messages   = new XPlaneMessages();
     Data       = new XPlaneData();
     Commands   = new XPlaneCommands();
     Processing = new XPlaneProcessing();
     Display    = new XPlaneDisplay();
     Scenery    = new XPlaneScenery();
     Graphics   = new XPlaneGraphics();
 }
Exemple #4
0
 internal EngineDatarefs(XPlaneData data)
 {
     m_data = data;
 }
Exemple #5
0
            internal CockpitDatarefs(XPlaneData data)
            {
                m_data = data;

                Engine = new EngineDatarefs(data);
            }
Exemple #6
0
 internal ViewDatarefs(XPlaneData data)
 {
     m_data = data;
 }
Exemple #7
0
            internal AircraftDatarefs(XPlaneData data)
            {
                m_data = data;

                View = new ViewDatarefs(data);
            }