Thomas Davies / Mbed 2 deprecated LetTheBallDrop

Dependencies:   N5110 mbed PowerControl

Revision:
0:c2c1df1163f1
Child:
1:3305d7e44880
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GameScreen.h	Sat Mar 07 01:49:37 2015 +0000
@@ -0,0 +1,22 @@
+#ifndef GameScreen_H
+#define GameScreen_H
+
+#include "mbed.h"
+#include "N5110.h"
+
+//GameScreen class is an extension of the base Nokia Library Created by Craig Evans
+// This extension adds functionality relevant to 'Fall Down Game'. 
+// drawPlatform, drawBall, drawScore etc....
+
+class GameScreen: public N5110::N5110
+{
+public:
+    explicit GameScreen(PinName pwrPin, PinName scePin, PinName rstPin, PinName dcPin, PinName mosiPin, PinName sclkPin, PinName ledPin)
+        :N5110(pwrPin, scePin,rstPin,dcPin,mosiPin,sclkPin,ledPin){}    //is this ideal? no... did it happen? yes...
+
+    
+    
+    
+};
+
+#endif
\ No newline at end of file