Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
Loading...
Searching...
No Matches
ChannelManager.h
Go to the documentation of this file.
1#ifndef NW4HBM_SND_CHANNEL_MANAGER_H
2#define NW4HBM_SND_CHANNEL_MANAGER_H
3
4#include "Channel.h"
5#include "InstanceManager.h"
6#include "snd_types.h"
7
8namespace nw4hbm {
9 namespace snd {
10 namespace detail {
11 class ChannelManager : public InstanceManager<Channel, 0> {
12 public:
14 static ChannelManager instance;
15 return instance;
16 }
18 };
19 } // namespace detail
20 } // namespace snd
21} // namespace nw4hbm
22
23#endif
Definition ChannelManager.h:11
static ChannelManager & GetInstance()
Definition ChannelManager.h:13
ChannelManager()
Definition ChannelManager.h:17
Definition InstanceManager.h:10
Definition HBMAnmController.h:6