Rev 10 | Go to most recent revision | Details | Last modification | View Log | RSS feed
#include "point.hpp"
#include <vector>
class snake
{
public:
snake();
~snake();
nextPoint(point newPoint);
vector<point> points; // list of points snake occupies
// colour
int R;
int G;
int B;
};