blob: 68f9928d1ceac246e9a8e75515c6213bc270fb3e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|