aboutsummaryrefslogtreecommitdiffstats
path: root/src/world.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-10-20 09:01:28 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-10-20 09:01:28 -0400
commita7ec2350f406195b119e24a81c95649c3645a26b (patch)
treeb99ac8d8bef516f1d90b9cdb9a21634da0801e41 /src/world.cpp
parentdbed8f40b0c85a1d550d9c2557d57b192fc097ab (diff)
oh yeah that
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();
}
}