Kern Fowler / Mbed 2 deprecated Donkey_Kong_Game

Dependencies:   mbed

Revision:
8:421f94b816c4
Parent:
7:ffbc921c20f7
Child:
9:e6832bf222b7
--- a/main.h	Tue May 07 15:33:17 2019 +0000
+++ b/main.h	Tue May 07 16:02:12 2019 +0000
@@ -147,6 +147,25 @@
     {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,},
 };
 // Barrel -----
+
+class Barrel
+{
+
+    public:
+
+    Barrel();
+
+    ~Barrel();
+
+    void barrel_drop(Gamepad &pad, N5110 &lcd);
+};
+
+int game_barrel[4][8] = {
+    {0,1,1,1,1,1,1,0,},
+    {1,1,1,1,1,1,1,1,},
+    {1,1,1,1,1,1,1,1,},
+    {0,1,1,1,1,1,1,0,},
+};
 // Banana -----
 // Controls -------------------------
 void controls_run();