Starbound/source/game/scripting/StarPlayerLuaBindings.hpp
2025-03-21 22:23:30 +11:00

15 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