Meteor defense project

Dependencies:   N5110 mbed

GameEngine/GameEngine.h

Committer:
jasper0712
Date:
2017-03-22
Revision:
4:4145abd09075
Parent:
0:5fbc0fbc9d30
Child:
5:c74bbdda06f4

File content as of revision 4:4145abd09075:

#ifndef GAMEENGINE_H
#define GAMEENGINE_H

#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
#include "Weapon.h"
#include "Spawn.h"

#define Rows 48
#define Cols 84


class GameEngine
{
    
public:
    GameEngine();
    ~GameEngine();
    void drawSpawn(N5110 &lcd);

private:
    Spawn spa;
    int drawit;
};

#endif