#pragma once #include namespace DX { //! Class representing a FlyingVehicle in the game. class Vehicle : public ShapeBase { public: Vehicle(unsigned int obj); }; } // End NameSpace DX