// DR. ROBOTNIK'S RING RACERS //----------------------------------------------------------------------------- // Copyright (C) 2023 by James Robert Roman // // This program is free software distributed under the // terms of the GNU General Public License, version 2. // See the 'LICENSE' file for more details. //----------------------------------------------------------------------------- #ifndef lua_profile_h #define lua_profile_h #include "blua/lua.h" #include "doomtype.h" #include "typedef.h" #ifdef __cplusplus extern "C" { #endif struct lua_timer_t; void LUA_ResetTicTimers(void); lua_timer_t *LUA_BeginFunctionTimer(lua_State *L, int fn_idx, const char *name); void LUA_EndFunctionTimer(lua_timer_t *timer); void LUA_RenderTimers(void); #ifdef __cplusplus } // extern "C" #endif #endif/*lua_profile_h*/