mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-19 18:14:44 +00:00
15 lines
188 B
C++
15 lines
188 B
C++
#pragma once
|
|
|
|
#include <DXAPI/SimObject.h>
|
|
|
|
namespace DX
|
|
{
|
|
class TCPObject : public SimObject
|
|
{
|
|
public:
|
|
TCPObject(unsigned int obj);
|
|
|
|
unsigned int &state;
|
|
};
|
|
} // End NameSpace DX
|