GTAV-Classes-private/script/Timer.hpp

10 lines
228 B
C++
Raw Normal View History

2024-09-25 08:11:17 -04:00
#pragma once
#include "types.hpp"
// this is named stopwatch in the decompiler but "timer" is probably a better name for it
struct TIMER
{
SCR_INT Time;
SCR_BOOL IsInitialized;
};
static_assert(sizeof(TIMER) == 2 * 8);