Josh Davy / Mbed 2 deprecated Flip

Dependencies:   mbed el17jd

Music/Music.h

Committer:
joshdavy
Date:
2019-04-06
Revision:
5:b9cf407bcc63
Parent:
4:afbf3dd71403
Child:
8:21b6d4dbce44

File content as of revision 5:b9cf407bcc63:

#ifndef MUSIC_H
#define MUSIC_H

/*Music Class*/
#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
#include "Sprite.h"
#include "Player.h"




class Music {

public:
    Music();
    ~Music();
    void init(const int* data,int length);
    void play_next();

    
private:
    const int*  _data;
    int _index;
    int _length;
    

};
#endif