summaryrefslogtreecommitdiff
path: root/src/game-server/mapcomposite.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server/mapcomposite.h')
-rw-r--r--src/game-server/mapcomposite.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game-server/mapcomposite.h b/src/game-server/mapcomposite.h
index ba76ddc8..c8eb2e88 100644
--- a/src/game-server/mapcomposite.h
+++ b/src/game-server/mapcomposite.h
@@ -31,7 +31,7 @@
class Actor;
class Being;
-class Character;
+class CharacterComponent;
class Map;
class MapComposite;
class Point;
@@ -76,11 +76,11 @@ struct CharacterIterator
{
ZoneIterator iterator;
unsigned short pos;
- Character *current;
+ Being *current;
CharacterIterator(const ZoneIterator &);
void operator++();
- Character *operator*() const { return current; }
+ Being *operator*() const { return current; }
operator bool() const { return iterator; }
};