Slight tweaks to waypoints

This commit is contained in:
Kayne Ruse
2015-01-02 23:51:00 +11:00
parent d815f17442
commit 92eb75af7e
4 changed files with 28 additions and 18 deletions
+17 -1
View File
@@ -27,4 +27,20 @@ int WaypointData::SetTriggerReference(int i) {
int WaypointData::GetTriggerReference() {
return triggerRef;
}
}
BoundingBox WaypointData::SetBoundingBox(BoundingBox b) {
return bounds = b;
}
BoundingBox WaypointData::GetBoundingBox() {
return bounds;
}
Vector2 WaypointData::SetOrigin(Vector2 v) {
return origin = v;
}
Vector2 WaypointData::GetOrigin() {
return origin;
}