summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2006-12-31 16:00:19 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2006-12-31 16:00:19 +0000
commitf131ed7e4341ef1b1845641a70eb70c5823afe47 (patch)
tree7cd0d891bf7f4a9988861f3475076e366719ce40 /src
parentd464d0912e202c11d69d8e33bae8c18304760087 (diff)
downloadmana-client-f131ed7e4341ef1b1845641a70eb70c5823afe47.tar.gz
mana-client-f131ed7e4341ef1b1845641a70eb70c5823afe47.tar.bz2
mana-client-f131ed7e4341ef1b1845641a70eb70c5823afe47.tar.xz
mana-client-f131ed7e4341ef1b1845641a70eb70c5823afe47.zip
Added some variable definitions since they were reported missing by the linker.
Diffstat (limited to 'src')
-rw-r--r--src/being.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/being.cpp b/src/being.cpp
index 1018b8e1..abf64c18 100644
--- a/src/being.cpp
+++ b/src/being.cpp
@@ -47,6 +47,11 @@ PATH_NODE::PATH_NODE(Uint16 iX, Uint16 iY):
{
}
+const char Being::DOWN;
+const char Being::LEFT;
+const char Being::UP;
+const char Being::RIGHT;
+
Being::Being(Uint16 id, Uint16 job, Map *map):
mJob(job),
mX(0), mY(0),