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

Dependencies:   mbed

Player/Player.h

Committer:
kohacraft
Date:
2015-12-09
Revision:
0:7a56bf0441ea

File content as of revision 0:7a56bf0441ea:

#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