diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-11-02 20:48:31 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-11-02 20:48:31 -0500 |
commit | f8ebf8fd3d5691cd45566281a1f54c5ecbc43762 (patch) | |
tree | 35633b779419c0df9cdb2408838189d529357abf /include/world.h | |
parent | 07d73ea992641198a887f000bf44b874c8e11574 (diff) |
updated goals
Diffstat (limited to 'include/world.h')
-rw-r--r-- | include/world.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/world.h b/include/world.h index 75263e5..85b02c9 100644 --- a/include/world.h +++ b/include/world.h @@ -11,6 +11,7 @@ typedef struct { /* * World - creates and handles an area of land */ + class World { protected: @@ -36,8 +37,6 @@ protected: * Keeps a dynamically allocated array of platforms in the world. */ - std::vector<Platform> platform; - /* * Contains the starting x-coordinate to draw the world at. This should be equal to * - getWidth() (see world.cpp) / 2 @@ -125,7 +124,6 @@ public: * These functions add features to the world. */ - void addPlatform(float x,float y,float w,float h); void addHole(unsigned int start,unsigned int end); /* |