mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-20 18:44:45 +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
|