Player character library

PlayerChar.h

Committer:
isabelc
Date:
2017-03-24
Revision:
5:31713bfad54e
Parent:
4:7bae458055bf
Child:
8:e192166b28f9

File content as of revision 5:31713bfad54e:

#ifndef PLAYERCHAR_H
#define PLAYERCHAR_H

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

class playerChar{
    public:
    
    void update(N5110 &lcd, Gamepad &pad);
    
    int _x;
    
    };
    
#endif