mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
7fd23fde00
* feat(Network): add snConnectToPeerTaskData and snConnectToPeerTaskResult * feat(Script): Add script global structs * fix(CMake): Try to get includes to work * chore(Globals): try to fix linux build * chore(Globals): Actually rename all instances of TIMER
8 lines
152 B
C++
8 lines
152 B
C++
#pragma once
|
|
#include "../types.hpp"
|
|
|
|
struct GSBD_Kicking
|
|
{
|
|
SCR_ARRAY<uint64_t, 32> KickedPlayers;
|
|
};
|
|
static_assert(sizeof(GSBD_Kicking) == 33 * 8); |