Added LocalCharacter, removed entityIndex

This commit is contained in:
Kayne Ruse
2014-12-19 19:44:34 +11:00
parent 07af05712b
commit 2ae2c48819
10 changed files with 104 additions and 31 deletions
-8
View File
@@ -38,10 +38,6 @@ SpriteSheet* Entity::GetSprite() {
//accessors & mutators
//-------------------------
int Entity::SetEntityIndex(int i) {
return entityIndex = i;
}
Vector2 Entity::SetOrigin(Vector2 v) {
return origin = v;
}
@@ -54,10 +50,6 @@ BoundingBox Entity::SetBounds(BoundingBox b) {
return bounds = b;
}
int Entity::GetEntityIndex() {
return entityIndex;
}
Vector2 Entity::GetOrigin() {
return origin;
}