Subversion Repositories sssnakesss

Compare Revisions

Ignore whitespace Rev 16 → Rev 17

/include/point.hpp
4,6 → 4,7
class Point
{
public:
Point();
Point(int x, int y);
 
int X;
/include/snake.hpp
18,7 → 18,7
void move();
void append(int num);
 
// Stuff that should be private - Did I write this comment? (F)
// Stuff that should be private - Did I write this comment? (F) No (T)
vector<Point> points; // list of points snake occupies
 
// Colour Values