Subversion Repositories sssnakesss

Rev

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

#include <vector>

using namespace std;

#include "point.hpp"
#include "snake.hpp"

Snake::Snake()
{
}

void Snake::nextPoint(Point newPoint)
{
    points.push_back(newPoint);
}