mirror of
https://github.com/zeldaret/ss
synced 2026-06-19 07:37:01 -04:00
18 lines
311 B
C++
18 lines
311 B
C++
#ifndef NW4R_SND_CHANNEL_MANAGER_H
|
|
#define NW4R_SND_CHANNEL_MANAGER_H
|
|
#include "common.h"
|
|
|
|
namespace nw4r {
|
|
namespace snd {
|
|
namespace detail {
|
|
struct ChannelManager {
|
|
static ChannelManager *GetInstance();
|
|
|
|
void UpdateAllChannel();
|
|
};
|
|
} // namespace detail
|
|
} // namespace snd
|
|
} // namespace nw4r
|
|
|
|
#endif
|