aboutsummaryrefslogtreecommitdiffstats
path: root/examples/shooter/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/shooter/main.cpp')
-rw-r--r--examples/shooter/main.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/shooter/main.cpp b/examples/shooter/main.cpp
index d2727877..9a8d22d0 100644
--- a/examples/shooter/main.cpp
+++ b/examples/shooter/main.cpp
@@ -1,6 +1,7 @@
#include <yage/yage.h>
#include "player.h"
+#include "bullet.h"
using std::cout;
@@ -63,6 +64,7 @@ int main(int argc, char **argv)
auto textures = male_l;
Player player({400, 300, 48 * 2, 64 * 2}, textures.front());
+ Bullet bullet({400, 300, 25, 25});
while (!window.shouldClose()) {
window.pollEvents();
@@ -120,6 +122,7 @@ int main(int argc, char **argv)
window.clearBuffer();
player.draw(sp);
+ bullet.draw(sp);
sp.render();
window.swapBuffer();