mirror of
https://github.com/Ragora/T2-CPP.git
synced 2026-01-20 10:34:45 +00:00
* Add preprocessor macros for resolving member field offsets in a standard, easy to read way.
9 lines
155 B
C++
9 lines
155 B
C++
#include <DXAPI/TCPObject.h>
|
|
|
|
namespace DX
|
|
{
|
|
TCPObject::TCPObject(unsigned int obj) : SimObject(obj),
|
|
state(MEMBER_FIELD(obj, unsigned int, 56))
|
|
{
|
|
}
|
|
} |