David Smart / Mbed OS PUB_RA8875_Tetris

Dependencies:   RA8875

Fork of Tetris by Sergejs Popovs

Revision:
0:645509d95b8d
Child:
1:b4aa36ae11ac
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Block.h	Mon Feb 20 14:14:30 2017 +0000
@@ -0,0 +1,18 @@
+#ifndef BLOCK_H
+#define BLOCK_H
+
+class Block {
+    public:
+        Block();
+        ~Block();
+        int form;
+        int angle;
+        int x;
+        int y;
+        bool Active;
+        void rotateLeft();
+        void rotateRight();
+        bool CheckBottom();
+};
+    
+#endif
\ No newline at end of file