aboutsummaryrefslogtreecommitdiffstats
path: root/examples/shooter/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/shooter/player.h')
-rw-r--r--examples/shooter/player.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/shooter/player.h b/examples/shooter/player.h
index 72af7c34..b8042e71 100644
--- a/examples/shooter/player.h
+++ b/examples/shooter/player.h
@@ -15,7 +15,7 @@ enum class Action {
MOVING,
};
-class Player
+class Player : public yage::Drawable
{
public:
Player(const glm::vec4 &bound, const yage::Texture &texture);
@@ -26,6 +26,9 @@ public:
void move(Direction direction);
void idle();
+
+ // simple getters
+ glm::vec4 position() const;
private:
glm::vec4 bound_;
yage::Texture texture_;