T2-CPP/CommonAPI/Common/source/DXAPI/TCPObject.cpp
Robert MacGregor 0410000234 * Minor cleanups.
* Add preprocessor macros for resolving member field offsets in a standard, easy to read way.
2019-07-14 17:00:46 -07:00

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))
{
}
}