mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-20 02:24:46 +00:00
19 lines
329 B
C++
19 lines
329 B
C++
#pragma once
|
|
|
|
#include <DXAPI/Point3F.h>
|
|
#include <DXAPI/ShapeBase.h>
|
|
|
|
namespace DX
|
|
{
|
|
//! Class representing a StaticShape in the game.
|
|
class StaticShape : public ShapeBase
|
|
{
|
|
public:
|
|
StaticShape(unsigned int obj);
|
|
|
|
//! Object Name
|
|
//const char *name;
|
|
//! Position
|
|
//const Point3F position;
|
|
};
|
|
} // End NameSpace DX
|