diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-11 15:09:21 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2004-12-11 15:09:21 +0000 |
commit | af7060d953e1c0f54a7d5bf46894191d41d853ff (patch) | |
tree | e98737c9d15a30e4eade2f63fa97cf65e6b75e72 /src/being.cpp | |
parent | 041c6e3cb599d019d1e92d5087ec6726a5970902 (diff) | |
download | mana-af7060d953e1c0f54a7d5bf46894191d41d853ff.tar.gz mana-af7060d953e1c0f54a7d5bf46894191d41d853ff.tar.bz2 mana-af7060d953e1c0f54a7d5bf46894191d41d853ff.tar.xz mana-af7060d953e1c0f54a7d5bf46894191d41d853ff.zip |
Walk with arrow keys too.
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being.cpp b/src/being.cpp index 1344bfbf..625919a2 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -32,7 +32,7 @@ unsigned int count = 0; // Number of beings in the list /** Create a path node */ PATH_NODE::PATH_NODE(unsigned short x, unsigned short y): - next(NULL) + next(NULL) { this->x = x; this->y = y; |