Creating LuaLog header

This commit is contained in:
Don Honerbrink
2015-11-17 22:14:56 +00:00
parent a10fb44e63
commit 7832f06fb8

View File

@@ -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);
};