aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/world.cpp')
-rw-r--r--src/world.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/world.cpp b/src/world.cpp
index 2772160..15fde50 100644
--- a/src/world.cpp
+++ b/src/world.cpp
@@ -299,6 +299,11 @@ void WorldSystem::load(const std::string& file)
game::time::setTickCount(std::stoi(wxml->GetText()));
}
+ // hill creation
+ /*else if (tagName == "hill") {
+ addHill(ivec2 { wxml->IntAttribute("peakx"), wxml->IntAttribute("peaky") }, wxml->UnsignedAttribute("width"));
+ }*/
+
wxml = wxml->NextSiblingElement();
}
}