mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-20 02:24:46 +00:00
12 lines
161 B
C++
12 lines
161 B
C++
#pragma once
|
|
|
|
#include <DXAPI/GameBase.h>
|
|
|
|
namespace DX
|
|
{
|
|
class ShapeBase : public GameBase
|
|
{
|
|
public:
|
|
ShapeBase(unsigned int obj);
|
|
};
|
|
} // End NameSpace DX
|