Added NetworkBuffer
Allows for a command to be built before sending it off. Added wrapper functions for certain data types. Changed command from a number to a Name.
This commit is contained in:
parent
9565c94cd2
commit
202d0d747f
6 changed files with 293 additions and 16 deletions
|
|
@ -812,6 +812,10 @@ void InitThingdef()
|
|||
netcmdstruct->Size = sizeof(FNetworkCommand);
|
||||
netcmdstruct->Align = alignof(FNetworkCommand);
|
||||
|
||||
auto netbuffstruct = NewStruct("NetworkBuffer", nullptr);
|
||||
netbuffstruct->Size = sizeof(FNetworkBuffer);
|
||||
netbuffstruct->Align = alignof(FNetworkBuffer);
|
||||
|
||||
auto fltd = NewStruct("FLineTraceData", nullptr);
|
||||
fltd->Size = sizeof(FLineTraceData);
|
||||
fltd->Align = alignof(FLineTraceData);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue