diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-12-31 16:00:19 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2006-12-31 16:00:19 +0000 |
commit | f131ed7e4341ef1b1845641a70eb70c5823afe47 (patch) | |
tree | 7cd0d891bf7f4a9988861f3475076e366719ce40 /src | |
parent | d464d0912e202c11d69d8e33bae8c18304760087 (diff) | |
download | Mana-f131ed7e4341ef1b1845641a70eb70c5823afe47.tar.gz Mana-f131ed7e4341ef1b1845641a70eb70c5823afe47.tar.bz2 Mana-f131ed7e4341ef1b1845641a70eb70c5823afe47.tar.xz Mana-f131ed7e4341ef1b1845641a70eb70c5823afe47.zip |
Added some variable definitions since they were reported missing by the linker.
Diffstat (limited to 'src')
-rw-r--r-- | src/being.cpp | 5 |
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), |