summaryrefslogtreecommitdiff
path: root/include/enemy_bullet.h
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2015-05-31 16:11:28 +0200
committerJustin Worthe <justin.worthe@gmail.com>2015-05-31 16:11:28 +0200
commit2dd8aa3223ec67528f38936a96f66508737079f2 (patch)
treea392d247c1d4096c815b7f923dc07b460440a40e /include/enemy_bullet.h
parent90483e4f3d0f7b95b3846bf1d0ff410ebd930011 (diff)
Added some domain objects
Diffstat (limited to 'include/enemy_bullet.h')
-rw-r--r--include/enemy_bullet.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/enemy_bullet.h b/include/enemy_bullet.h
new file mode 100644
index 0000000..f08d988
--- /dev/null
+++ b/include/enemy_bullet.h
@@ -0,0 +1,9 @@
+#pragma once
+
+class EnemyBullet {
+public:
+ EnemyBullet(int x, int y);
+private:
+ int x;
+ int y;
+};