diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-10-15 22:08:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-10-15 22:18:35 +0300 |
commit | 6d44c69cb0cc9c2ac8a94c56c07ed45f63ab9726 (patch) | |
tree | 4a9202e4528dc3ae5d111a40d6217ee0871fa06b /src/resources/map/map.h | |
parent | 7e35fd53d5fdc658facfce281577421296f8e3c1 (diff) | |
download | plus-6d44c69cb0cc9c2ac8a94c56c07ed45f63ab9726.tar.gz plus-6d44c69cb0cc9c2ac8a94c56c07ed45f63ab9726.tar.bz2 plus-6d44c69cb0cc9c2ac8a94c56c07ed45f63ab9726.tar.xz plus-6d44c69cb0cc9c2ac8a94c56c07ed45f63ab9726.zip |
Rename blockTile to AddBlockMask in map.
Diffstat (limited to 'src/resources/map/map.h')
-rw-r--r-- | src/resources/map/map.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/map/map.h b/src/resources/map/map.h index c1b84ae83..9c74875d8 100644 --- a/src/resources/map/map.h +++ b/src/resources/map/map.h @@ -145,8 +145,8 @@ class Map final : public Properties, public ConfigListener /** * Marks a tile as occupied. */ - void blockTile(const int x, const int y, - const BlockTypeT type); + void addBlockMask(const int x, const int y, + const BlockTypeT type); /** * Gets walkability for a tile with a blocking bitmask. When called |