prime/include/Kyoto/Audio/CMidiManager.hpp

16 lines
346 B
C++
Raw Normal View History

2022-10-21 21:40:29 +00:00
#ifndef _CMIDIMANAGER
#define _CMIDIMANAGER
#include "Kyoto/Audio/CSfxHandle.hpp"
class CMidiManager {
public:
class CMidiWrapper {};
class CMidiData {};
static CSfxHandle Play(const CMidiData&, unsigned short fadeTime, bool stopExisting, short volume);
static void Stop(const CSfxHandle&, unsigned short);
};
#endif // _CMIDIMANAGER