diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2005-01-15 15:52:54 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2005-01-15 15:52:54 +0000 |
commit | c92d7c1188febd7c5af15fa710ab06c3af4dede5 (patch) | |
tree | f6a78141dd8b68098aaff444845068eef9caf155 /src/being.h | |
parent | ffadd9c8accbdc8f1fedf089c79bd6ec54b73884 (diff) | |
download | mana-c92d7c1188febd7c5af15fa710ab06c3af4dede5.tar.gz mana-c92d7c1188febd7c5af15fa710ab06c3af4dede5.tar.bz2 mana-c92d7c1188febd7c5af15fa710ab06c3af4dede5.tar.xz mana-c92d7c1188febd7c5af15fa710ab06c3af4dede5.zip |
Fixed and improved death
Diffstat (limited to 'src/being.h')
-rw-r--r-- | src/being.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/being.h b/src/being.h index 368a60c6..ce6b8433 100644 --- a/src/being.h +++ b/src/being.h @@ -59,14 +59,14 @@ class Being { unsigned short weapon; Being(); - Being::~Being(); + ~Being(); }; /** Removes all beings from the list */ void empty(); /** Add a Being to the list */ -void add_node(Being *Being); +void add_node(Being *being); /** Return a specific id Being */ Being *find_node(unsigned int id); @@ -88,7 +88,7 @@ unsigned int find_monster(unsigned short x, unsigned short y); void sort(); /** Remove all path nodes from a being */ -void empty_path(Being *Being); +void empty_path(Being *being); extern Being *player_node; |