diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-03-15 08:43:44 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-03-15 08:43:44 -0400 |
commit | 93d6035dad1eb60fb01648232809e55059dd1cfa (patch) | |
tree | 2384f3991593ce6b4a37e7e289cfdd634aeec380 /include/world.h | |
parent | c8c09860cb732006e161d26f25ff46e508770218 (diff) |
hills
Diffstat (limited to 'include/world.h')
-rw-r--r-- | include/world.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/world.h b/include/world.h index a60eab6..55c08f5 100644 --- a/include/world.h +++ b/include/world.h @@ -421,8 +421,15 @@ public: void addHole(unsigned int start,unsigned int end); - /* - * Get's the world's width. + /** + * Adds a hill to the world, given the peak's coordinates and how wide the + * hill can be. + */ + + void addHill( ivec2 peak, unsigned int width ); + + /** + * Gets the world's width. */ int getTheWidth(void) const; |