From 2dd8aa3223ec67528f38936a96f66508737079f2 Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Sun, 31 May 2015 16:11:28 +0200 Subject: Added some domain objects --- include/enemy_bullet.h | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 include/enemy_bullet.h (limited to 'include/enemy_bullet.h') 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; +}; -- cgit v1.2.3