ELEC2645 (2016/17) / Mbed 2 deprecated Bomb_WeixiTao_el16wt

Dependencies:   mbed

interface.h

Committer:
weixitao
Date:
2017-05-01
Revision:
2:23b20cbd3330
Parent:
1:83459533ff72

File content as of revision 2:23b20cbd3330:

#ifndef INTERFACE_H
#define INTERFACE_H

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

class interface
{
    public :
    
    void A();
    void B();
    void X();
    void Y();
    void border();
    
    private:
    
    int x;
    int y;


};
   
   
#endif