mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
11 lines
223 B
C++
11 lines
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); |