BunnymodXT icon indicating copy to clipboard operation
BunnymodXT copied to clipboard

restructuring: reduce the number of hardcoded offsets in favor of automatic finding

Open SmileyAG opened this issue 2 years ago • 0 comments

Example of current code from ServerDLL.cpp:

offCmd = 283736;

In that example it would be better to include header with playermove_t struct and replace it with:

offCmd = offsetof(playermove_t, cmd);

SmileyAG avatar Jan 07 '24 15:01 SmileyAG