17 lines
257 B
C++
17 lines
257 B
C++
#ifndef STAR_INTERFACE_LUA_BINDINGS_HPP
|
|
#define STAR_INTERFACE_LUA_BINDINGS_HPP
|
|
|
|
#include "StarLua.hpp"
|
|
|
|
namespace Star {
|
|
|
|
STAR_CLASS(MainInterface);
|
|
|
|
namespace LuaBindings {
|
|
LuaCallbacks makeInterfaceCallbacks(MainInterface* mainInterface);
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|