From a47649786fb94684c415b230669fbf5343cb7c5d Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Wed, 3 Jan 2018 13:57:51 +0000 Subject: [Engine] [Example] Added simple bullets that don't move --- examples/shooter/player.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'examples/shooter/player.cpp') diff --git a/examples/shooter/player.cpp b/examples/shooter/player.cpp index 2d0148e6..b2b85cfd 100644 --- a/examples/shooter/player.cpp +++ b/examples/shooter/player.cpp @@ -60,3 +60,8 @@ void Player::idle() { action_ = Action::IDLE; } + +glm::vec4 Player::position() const +{ + return bound_; +} -- cgit