summaryrefslogtreecommitdiff
path: root/src/shield.cpp
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2015-06-06 15:39:02 +0200
committerJustin Worthe <justin.worthe@gmail.com>2015-06-06 15:39:02 +0200
commit97d6287a0710ec59d746f6340a796bbe6c7c8aa2 (patch)
treed4dcca538ae99829b808e10261d4d430b4e29278 /src/shield.cpp
parent140b51f2bcd9c0aaa5b536d85702064a93530188 (diff)
Abstracted game objects into an entity base class
Diffstat (limited to 'src/shield.cpp')
-rw-r--r--src/shield.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shield.cpp b/src/shield.cpp
index b58714a..7457554 100644
--- a/src/shield.cpp
+++ b/src/shield.cpp
@@ -1,6 +1,6 @@
#include "shield.h"
Shield::Shield(int x, int y)
- :x(x), y(y)
+ :GameEntity(x, y)
{
}