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