2023-01-03 12:15:06 +00:00
|
|
|
#pragma once
|
|
|
|
#include "../types.hpp"
|
|
|
|
#include "../Timer.hpp"
|
|
|
|
|
|
|
|
struct g_AMC_playerBD_Entry
|
|
|
|
{
|
2023-06-14 20:16:19 +00:00
|
|
|
SCR_ARRAY<TIMER, NUM_CONTACTS> UsedContactServicesTimer; // only index 2 (mugger) is actually used by the scripts. the rest is just a waste of bandwidth
|
|
|
|
SCR_ARRAY<uint64_t, NUM_CONTACTS> ContactServiceCooldowns; // same as above
|
2023-01-03 12:15:06 +00:00
|
|
|
};
|
2023-06-14 20:16:19 +00:00
|
|
|
static_assert(sizeof(g_AMC_playerBD_Entry) == 242 * 8);
|
2023-01-03 12:15:06 +00:00
|
|
|
|
|
|
|
struct g_AMC_playerBD
|
|
|
|
{
|
2023-06-14 20:16:19 +00:00
|
|
|
SCR_ARRAY<g_AMC_playerBD_Entry, 32> Entries;
|
2023-01-03 12:15:06 +00:00
|
|
|
};
|
2023-06-14 20:16:19 +00:00
|
|
|
static_assert(sizeof(g_AMC_playerBD) == 7745 * 8);
|