Subversion Repositories sssnakesss

Rev

Rev 9 | Rev 12 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef SNAKE_HPP
#define SNAKE_HPP

class Snake
{
    public:
        Snake();
       
        void nextPoint(Point newPoint);

    // Stuff that should be private
        vector<Point> points; // list of points snake occupies

        // Colour Values
        int R;
        int G;
        int B;
};

#endif // SNAKE_HPP