mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-20 10:34:45 +00:00
16 lines
232 B
C++
16 lines
232 B
C++
#pragma once
|
|
|
|
#include <DXAPI/Point3F.h>
|
|
#include <DXAPI/NetObject.h>
|
|
|
|
namespace DX
|
|
{
|
|
class SceneObject : public NetObject
|
|
{
|
|
public:
|
|
SceneObject(unsigned int obj);
|
|
|
|
Point3F position;
|
|
Point3F scale;
|
|
};
|
|
} // End NameSpace DX
|