/*
* Music.h
* iphone-gl-app
*
* Created by John Ryland on 14/06/09.
* Copyright 2009 InvertedLogic. All rights reserved.
*
*/
#ifndef MUSIC_H
#define MUSIC_H
class Music
{
public:
Music();
void playMusic(const char *file);
private:
void *dptr;
};
#endif // MUSIC_H