atrooney-online-2/aosfxplayer.h
2017-02-11 11:18:57 +01:00

24 lines
331 B
C++

#ifndef AOSFXPLAYER_H
#define AOSFXPLAYER_H
#include "bass.h"
#include "aoapplication.h"
#include <QWidget>
class AOSfxPlayer
{
public:
AOSfxPlayer(QWidget *parent, AOApplication *p_ao_app);
void play(QString p_path);
private:
QWidget *m_parent;
AOApplication *ao_app;
HSTREAM m_stream;
};
#endif // AOSFXPLAYER_H