ELEC2645 (2016/17) / Mbed 2 deprecated Bomb_WeixiTao_el16wt

Dependencies:   mbed

human.h

Committer:
weixitao
Date:
2017-05-01
Revision:
1:83459533ff72

File content as of revision 1:83459533ff72:

#ifndef HUMAN_H
#define HUMAN_H

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

class human
{
    public :
    
    void print_human();
    double humanX();
    double humanY();
    
    private:
    
    int x;
    int y;


};
   
   
#endif