ELEC2645 (2017/18) / Mbed 2 deprecated ll13jrm

Dependencies:   mbed

Food/Food.h

Committer:
JRM1986
Date:
2018-02-28
Revision:
2:ea90cec2489a
Parent:
1:c3fdbc4b1293
Child:
3:50f01159c61d

File content as of revision 2:ea90cec2489a:

#ifndef FOOD_H
#define FOOD_H

#include "mbed.h"
#include "N5110.h"
#include "GamePad.h"
#include "FXOS8700CQ.h"

/** Food Class
* @brief Describes the methods and functions for the food
* @author Joshua R. Marshall
* @date Feb, 2018
*/

class Food
{

public:
    Food(); // constructor
    ~Food(); // destructor

    
private:


};
#endif