summaryrefslogtreecommitdiff
path: root/include/shield.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/shield.h
parent90483e4f3d0f7b95b3846bf1d0ff410ebd930011 (diff)
Added some domain objects
Diffstat (limited to 'include/shield.h')
-rw-r--r--include/shield.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/shield.h b/include/shield.h
new file mode 100644
index 0000000..b113bdd
--- /dev/null
+++ b/include/shield.h
@@ -0,0 +1,10 @@
+#pragma once
+
+class Shield {
+public:
+ Shield(int x, int y);
+private:
+ int x;
+ int y;
+};
+