NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
snd_MidiSeqPlayer.h
1#ifndef NW4R_SND_MIDI_SEQ_PLAYER_H
2#define NW4R_SND_MIDI_SEQ_PLAYER_H
3
4/*******************************************************************************
5 * headers
6 */
7
8#include "nw4r/snd/snd_SeqPlayer.h"
9
10/*******************************************************************************
11 * classes and functions
12 */
13
14namespace nw4r { namespace snd { namespace detail
15{
16 class MidiSeqPlayer : public SeqPlayer
17 {
18 MidiSeqPlayer();
19 virtual void ChannelCallback(Channel *) {}
20 };
21}}} // namespace nw4r::snd::detail
22
23#endif // NW4R_SND_MIDI_SEQ_PLAYER_H