6352e8e319
all at once
16 lines
226 B
C++
16 lines
226 B
C++
#ifndef STAR_PLAYER_LUA_BINDINGS_HPP
|
|
#define STAR_PLAYER_LUA_BINDINGS_HPP
|
|
|
|
#include "StarLua.hpp"
|
|
|
|
namespace Star {
|
|
|
|
STAR_CLASS(Player);
|
|
|
|
namespace LuaBindings {
|
|
LuaCallbacks makePlayerCallbacks(Player* player);
|
|
}
|
|
}
|
|
|
|
#endif
|