diff options
| author | Ray Hogenson <rayhogenson@gmail.com> | 2012-05-03 15:08:19 -0800 |
|---|---|---|
| committer | Ray Hogenson <rayhogenson@gmail.com> | 2012-05-03 15:08:19 -0800 |
| commit | 7e5ecb0d0325133eee3cd6e66ccf7fdb96c231d0 (patch) | |
| tree | 0886addb4c827487b6124715842ae57d2e6d629d /include/grid.h | |
| parent | added an intro screen (diff) | |
| download | yetihack-7e5ecb0d0325133eee3cd6e66ccf7fdb96c231d0.tar.zst | |
added a new level
Diffstat (limited to 'include/grid.h')
| -rw-r--r-- | include/grid.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/grid.h b/include/grid.h new file mode 100644 index 0000000..68f9928 --- /dev/null +++ b/include/grid.h @@ -0,0 +1,17 @@ +#ifndef GRID_H +#define GRID_H +#include <vector> +#include <yeti> +using namespace std; + +class grid +{ + public: + add(yeti); + grid(); + move(); + refresh(); + private: + vector<yeti> objects; +} +#endif |
