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