diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-06-17 20:13:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-06-17 20:13:48 +0300 |
commit | c2efedab22275302f0a10cc197424d345a021d18 (patch) | |
tree | 7488abbb3655451a3f6a1621e0708f72011af5f6 /src/actorspritemanager.h | |
parent | 79aba82be3de5b6b571e2f59f7a34ded4b03160f (diff) | |
download | plus-c2efedab22275302f0a10cc197424d345a021d18.tar.gz plus-c2efedab22275302f0a10cc197424d345a021d18.tar.bz2 plus-c2efedab22275302f0a10cc197424d345a021d18.tar.xz plus-c2efedab22275302f0a10cc197424d345a021d18.zip |
Replace SDL int types to C++ types.
Diffstat (limited to 'src/actorspritemanager.h')
-rw-r--r-- | src/actorspritemanager.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/actorspritemanager.h b/src/actorspritemanager.h index 7ce00dd68..1491ca6d4 100644 --- a/src/actorspritemanager.h +++ b/src/actorspritemanager.h @@ -57,7 +57,7 @@ class ActorSpriteManager: public ConfigListener /** * Create a Being and add it to the list of ActorSprites. */ - Being *createBeing(int id, ActorSprite::Type type, Uint16 subtype); + Being *createBeing(int id, ActorSprite::Type type, uint16_t subtype); /** * Create a FloorItem and add it to the list of ActorSprites. @@ -189,13 +189,13 @@ class ActorSpriteManager: public ConfigListener */ void clear(); - std::vector<Uint32> blockedBeings; + std::vector<uint32_t> blockedBeings; - void addBlock(Uint32 id); + void addBlock(uint32_t id); - void deleteBlock(Uint32 id); + void deleteBlock(uint32_t id); - bool isBlocked(Uint32 id); + bool isBlocked(uint32_t id); void printAllToChat() const; |