diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-20 09:01:28 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-20 09:01:28 -0400 |
commit | a7ec2350f406195b119e24a81c95649c3645a26b (patch) | |
tree | b99ac8d8bef516f1d90b9cdb9a21634da0801e41 /src/world.cpp | |
parent | dbed8f40b0c85a1d550d9c2557d57b192fc097ab (diff) |
oh yeah that
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 5 |
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(); } } |