Simple fish eat program

Dependencies:   mbed mbed-rtos N5110 ShiftReg Tone

Revision:
1:7dfa61225fcf
Child:
2:532b0225519f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/classes/FishEngine.h	Fri Mar 19 17:28:12 2021 +0000
@@ -0,0 +1,17 @@
+#ifndef FISHENGINE_H
+#define FISHENGINE_H
+
+#include "N5110.h"
+#include "Tone.h"
+#include "ShiftReg.h"
+
+#include "Graphics.h"
+
+class FishEngine {
+
+public:
+    void system_init(N5110 &lcd, Tone &dac);
+    void titleSequence(N5110 &lcd);
+};
+
+#endif
\ No newline at end of file