/*
 *  Sound.h
 *  iphone-gl-app
 *
 *  Created by John Ryland on 11/06/09.
 *  Copyright 2009 InvertedLogic. All rights reserved.
 *
 */

#ifndef SOUND_H
#define SOUND_H


class Sound
{
public:
	Sound(const char *file);
	~Sound();
	void play();
private:
	void *dptr;
};


#endif // SOUND_H
