Game designed for project

Dependencies:   mbed Gamepad2

Revision:
3:5ede4ac61af1
diff -r e67ca889c81b -r 5ede4ac61af1 MyClasses/Blocks/Blocks.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MyClasses/Blocks/Blocks.h	Sun May 24 09:15:25 2020 +0000
@@ -0,0 +1,23 @@
+#ifndef BLOCKS_H
+#define BLOCKS_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+
+class Blocks
+{
+    public:
+    
+        void init(int length, int height);
+        void place_block(int x, int y, string block_type);
+        void print_lcd(N5110 &lcd);
+        Vector2D get_blockposition(); 
+        string get_blocktype();
+    
+    private:
+    
+        
+    
+}
+#endif
\ No newline at end of file