mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-20 02:24:46 +00:00
13 lines
220 B
C++
13 lines
220 B
C++
#pragma once
|
|
|
|
#include <DXAPI/Vehicle.h>
|
|
|
|
namespace DX
|
|
{
|
|
//! Class representing a FlyingVehicle in the game.
|
|
class FlyingVehicle : public Vehicle
|
|
{
|
|
public:
|
|
FlyingVehicle(unsigned int obj);
|
|
};
|
|
} // End NameSpace DX
|