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