summaryrefslogtreecommitdiffstats
path: root/Player.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Player.cpp')
-rw-r--r--Player.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/Player.cpp b/Player.cpp
index 1886139..36f32c6 100644
--- a/Player.cpp
+++ b/Player.cpp
@@ -68,3 +68,11 @@ PlayerNumber Player::getNumber() {
Controller* Player::getController() {
return(m_controller);
}
+
+VelocityVector Player::getVelocity() {
+ return(m_velocityVector);
+}
+
+Coordinates Player::getCoordinates() {
+ return(m_currentCoordinates);
+}