mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
16 lines
296 B
C++
16 lines
296 B
C++
#pragma once
|
|
#include "airunit.h"
|
|
|
|
class Aircraft : public AirUnit
|
|
{
|
|
public:
|
|
Aircraft(json::value json, unsigned int ID);
|
|
|
|
static void loadDatabase(string path);
|
|
|
|
virtual void changeSpeed(string change);
|
|
virtual void changeAltitude(string change);
|
|
|
|
protected:
|
|
static json::value database;
|
|
}; |