Faizan and Pages fun little game

Dependencies:   4DGL-uLCD-SE mbed SDFileSystem wave_player

stack.h

Committer:
kswanson31
Date:
2016-10-31
Revision:
18:2e42ec5e2311
Parent:
3:058e10b8ecf6

File content as of revision 18:2e42ec5e2311:

#ifndef STACK_H
#define STACK_H

#include "uLCD_4DGL.h"
#include "food.h"
#include <vector>
using namespace std;

class Stack {
public:
  Stack(int,uLCD_4DGL*);
  void draw();
  void erase();
  void move(int);
  void add(Food * );
  int size();
  void clear();
  int top;
  int x;
  
private:
  bool isBad;
  vector<Food> stackOfFood; 
  uLCD_4DGL * lcd;
  
};

#endif