201199550 Li Boyuan PlaneWar Game on K64f

Dependencies:   mbed Gamepad N5110

Revision:
0:36c99c50e688
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/life.h	Thu May 14 10:14:48 2020 +0000
@@ -0,0 +1,23 @@
+#ifndef LIFE_H
+#define LIFE_H
+
+
+#include "Bitmap.h"
+#include "N5110.h"
+#include "Gamepad.h"
+class life{
+    public:
+    void init();
+    void update();
+    void display(N5110 &lcd);
+    int liferest();
+    
+    private:
+    int _x;
+    int _y;
+    int _num;
+    int _width;
+    int _height;
+    int data[56];
+};
+#endif
\ No newline at end of file