mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-27 03:24:15 +01:00
14 lines
231 B
C
14 lines
231 B
C
#pragma once
|
|
|
|
#ifdef TIMEBARS
|
|
void tbInit();
|
|
void tbStartTimer(int32, Const char*);
|
|
void tbEndTimer(Const char*);
|
|
void tbDisplay();
|
|
#else
|
|
#define tbInit()
|
|
#define tbStartTimer(a, b)
|
|
#define tbEndTimer(a)
|
|
#define tbDisplay()
|
|
#endif
|