From 7832f06fb8411750c837073083618f96873ba8b6 Mon Sep 17 00:00:00 2001 From: Don Honerbrink Date: Tue, 17 Nov 2015 22:14:56 +0000 Subject: [PATCH] Creating LuaLog header --- RetroFE/Source/Lua/LuaLog.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 RetroFE/Source/Lua/LuaLog.h 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