summaryrefslogtreecommitdiff
path: root/src/map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.cpp')
-rw-r--r--src/map.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/map.cpp b/src/map.cpp
index 436a9c42..89c34ee6 100644
--- a/src/map.cpp
+++ b/src/map.cpp
@@ -147,31 +147,6 @@ Map::getTileHeight()
return tileHeight;
}
-std::string
-Map::getProperty(const std::string &name)
-{
- std::map<std::string,std::string>::iterator i = properties.find(name);
-
- if (i != properties.end())
- {
- return (*i).second;
- }
-
- return "";
-}
-
-bool
-Map::hasProperty(const std::string &name)
-{
- return (properties.find(name) != properties.end());
-}
-
-void
-Map::setProperty(const std::string &name, const std::string &value)
-{
- properties[name] = value;
-}
-
std::list<PATH_NODE>
Map::findPath(int startX, int startY, int destX, int destY)
{