YMZ294 Player. modified from "Yamaguchi's YMZ294 Library" for LPC1114.

Dependencies:   mbed

Revision:
0:7a56bf0441ea
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Player/Player.h	Wed Dec 09 01:38:08 2015 +0000
@@ -0,0 +1,16 @@
+#ifndef MBED_PLAYER_H
+#define MBED_PLAYER_H
+
+#include "Layer.h"
+
+class Player {
+public:
+    Player(char *s1, char *s2 = 0, char *s3 = 0);
+    void play(YMZ294& soundGen, int freq, int shape, int tempo);
+    void rewind();
+    
+private:
+    Layer layer1, layer2, layer3;
+};
+
+#endif
\ No newline at end of file