GTAV-Classes-private/script/MPScriptData.hpp
2024-09-25 12:11:17 +00:00

11 lines
No EOL
223 B
C++

#pragma once
#include "types.hpp"
struct MP_SCRIPT_DATA
{
SCR_INT Index; // this is an enum
uint64_t Args[15];
SCR_INT InstanceId;
uint64_t MoreArgs[4];
};
static_assert(sizeof(MP_SCRIPT_DATA) == 21 * 8);