aboutsummaryrefslogtreecommitdiffstats
path: root/examples/shooter/bullet.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/shooter/bullet.h')
-rw-r--r--examples/shooter/bullet.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/shooter/bullet.h b/examples/shooter/bullet.h
new file mode 100644
index 00000000..37ea52ca
--- /dev/null
+++ b/examples/shooter/bullet.h
@@ -0,0 +1,15 @@
+#ifndef EXAMPLES_SHOOTER_BULLET_H
+#define EXAMPLES_SHOOTER_BULLET_H
+
+#include <yage/yage.h>
+
+class Bullet {
+public:
+ Bullet(const glm::vec4 &bound);
+
+ void draw(yage::SpriteBatch &sp) const;
+private:
+ glm::vec4 bound_;
+};
+
+#endif