ELEC2645 (2019/20) / Mbed 2 deprecated ELEC2645_Project_el18zc2

Dependencies:   mbed

Revision:
5:7207c9b70108
Parent:
4:e46c295d4baf
Child:
6:b393cfe4e0a7
--- a/Fighter/Fighter.h	Sat May 23 18:12:03 2020 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-#ifndef FIGHTER_H
-#define FIGHTER_H
-
-#include "mbed.h"
-#include "N5110.h"
-#include "Gamepad.h"
-
-class fighter
-{
-
-    public:
-
-    fighter();
-    ~fighter();
-    void init(int x,int y,int height,int width);
-    void draw(N5110 &lcd);
-    void update(Direction d,float mag);
-    void add_score();
-    int get_score();
-    Vector2D get_pos();
-    
-    private:
-
-    int _height;
-    int _width;
-    int _x;
-    int _y;
-    int _speed;
-    int _score;
-    
-    };
-#endif
\ No newline at end of file