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
+3 -2
View File
@@ -34,10 +34,11 @@
class WaypointManager {
public:
WaypointManager() = default;
~WaypointManager() = default;
WaypointManager();
~WaypointManager();
//common public methods
int Create();
int Create(Vector2 origin, BoundingBox bounds);
void Unload(int uid);