Faizan and Pages fun little game

Dependencies:   4DGL-uLCD-SE mbed SDFileSystem wave_player

food.h

Committer:
fkhan39
Date:
2016-10-28
Revision:
0:de9ffb858be9
Child:
1:9eeeb0d8f036

File content as of revision 0:de9ffb858be9:

#ifndef FOOD_H
#define FOOD_H

class Food {
public:
  Food(int);
  void draw();
  bool isBad;

private:
  int typeOfFood;
  int levelItLanded; // y value
  void drawLettuce(int,int);
  void drawTomato(int,int);
  void drawCheese(int,int);
  void drawSteak(int,int);
  void drawBadLettuce(int,int);
  void drawBadTomato(int,int);
  void drawBadCheese(int,int);
  void drawBadSteak(int,int);
  void drawBread(int,int);
  
};

#endif