Finished Lab 4 Pt 1

Dependencies:   mbed Sounds PinDetect

Revision:
0:daf9e2f8e1a1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Ghosts.h	Fri Apr 05 19:46:26 2019 +0000
@@ -0,0 +1,10 @@
+#pragma once
+
+#include "Sprite.h"
+
+class Ghosts : public Sprite
+{
+    public:
+        virtual void Move();
+        virtual bool IsMoveAllowed(const int &nNewRow, const int &nNewCol){return true;}    
+};