Files
ss/include/nw4r/snd/snd_ChannelManager.h
T
2023-12-24 11:35:03 -05:00

21 lines
356 B
C++

#ifndef NW4R_SND_CHANNEL_MANAGER_H
#define NW4R_SND_CHANNEL_MANAGER_H
#include "types_nw4r.h"
namespace nw4r
{
namespace snd
{
namespace detail
{
struct ChannelManager
{
static ChannelManager * GetInstance();
void UpdateAllChannel();
};
}
}
}
#endif