mirror of
https://github.com/zeldaret/ss
synced 2026-06-22 08:35:39 -04:00
21 lines
356 B
C++
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 |