Josh Davy / Mbed 2 deprecated Flip

Dependencies:   mbed el17jd

Player/Player.h

Committer:
joshdavy
Date:
2019-04-02
Revision:
3:b34685dbdb8d
Child:
4:afbf3dd71403

File content as of revision 3:b34685dbdb8d:

#ifndef PLAYER_H
#define PLAYER_H

#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
#include "Bitmap.h"
#include "Sprite.h"

#define GRAVITY 2
/*Sprite Class*/

//extern N5110 lcd;

class Player : public Sprite{

public:
    Player();
    ~Player();
    update(Gamepad &pad);
};

#endif