diff --git a/RetroFE/Source/Lua/LuaLog.h b/RetroFE/Source/Lua/LuaLog.h new file mode 100644 index 0000000..e9230aa --- /dev/null +++ b/RetroFE/Source/Lua/LuaLog.h @@ -0,0 +1,12 @@ +#pragma once + +#include "Lua.h" + +namespace LuaLog +{ + int debug(lua_State *l); + int info(lua_State *l); + int notice(lua_State *l); + int warning(lua_State *l); + int error(lua_State *l); +}; \ No newline at end of file