ELEC2645 (2017/18) / Mbed OS el16ajm

Food/Food.cpp

Committer:
Andrew_M
Date:
2018-04-29
Revision:
5:a3a9e0417e04
Child:
7:c1e0593bfc99

File content as of revision 5:a3a9e0417e04:

#include "Food.h"

// nothing doing in the constructor and destructor
Food::Food()
{

}

Food::~Food()
{

}

void Food::init(int x, int y)
{
    //Inital values for variables    
    _x = x;
    _y = y;
}

int Food::getX()
{
    return _x;
}

int Food::getY()
{
    return _y;
}