Cafu Engine
Console_Lua.hpp
1 /*
2 Cafu Engine, http://www.cafu.de/
3 Copyright (c) Carsten Fuchs and other contributors.
4 This project is licensed under the terms of the MIT license.
5 */
6 
7 #ifndef CAFU_CONSOLE_LUA_HPP_INCLUDED
8 #define CAFU_CONSOLE_LUA_HPP_INCLUDED
9 
10 struct lua_State;
11 
12 
13 namespace cf
14 {
15  void Console_RegisterLua(lua_State* LuaState);
16 }
17 
18 #endif