mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:20:54 +01:00
13 lines
252 B
C
13 lines
252 B
C
#pragma once
|
|
|
|
#include <Misc/BSFixedString.h>
|
|
|
|
struct DefaultStringManager
|
|
{
|
|
static DefaultStringManager& Get();
|
|
|
|
uint8_t pad0[0x3B8];
|
|
BSFixedString fIdleTimer; // 3B8
|
|
};
|
|
|
|
static_assert(offsetof(DefaultStringManager, fIdleTimer) == 0x3B8);
|