Wrote the WaypointManager API skeleton

This commit is contained in:
Kayne Ruse
2015-01-10 14:03:13 +11:00
parent b391dde089
commit 8ea667a0b5
3 changed files with 42 additions and 2 deletions
+20
View File
@@ -23,7 +23,27 @@
#include "waypoint_manager.hpp"
static int create(lua_State* L) {
//TODO
}
static int unload(lua_State* L) {
//TODO
}
static int getWaypoint(lua_State* L) {
//TODO
}
static int getLoadedCount(lua_State* L) {
//TODO
}
static const luaL_Reg waypointManagerLib[] = {
{"Create",create},
{"Unload",unload},
{"GetWaypoint",getWaypoint},
{"GetCount",getLoadedCount},
{nullptr, nullptr}
};