NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
d_wm_se_manager.hpp
1#pragma once
2
3#include <game/mLib/m_vec.hpp>
4
6public:
7 /// @unofficial
8 enum EffectID_e {
9 WM_SE_EMY_CS_ENEMY_BYE = 86,
10 WM_SE_EMY_CS_MOVE_W1_KURIBO,
11 WM_SE_EMY_CS_MOVE_W2_SANDHALL,
12 WM_SE_EMY_CS_MOVE_W3_ICEBROS,
13 WM_SE_EMY_CS_MOVE_W4_PUKU,
14 WM_SE_EMY_CS_MOVE_W5_PAKKUN,
15 WM_SE_EMY_CS_MOVE_W6_KILLER,
16 WM_SE_EMY_CS_MOVE_W7_JUGEM,
17 WM_SE_EMY_CS_MOVE_W8_BUBBLE_APP,
18 WM_SE_EMY_CS_MOVE_W8_BUBBLE_DISAPP,
19 WM_SE_INVALID = 121
20 };
21
22 /// @unofficial
23 int playSound(int id, int, const mVec3_c &pos, int, int);
24 int playSound(int id, const mVec3_c &pos, int);
25 void endSound(int id);
26
27 static dWmSeManager_c *m_pInstance;
28};
int playSound(int id, int, const mVec3_c &pos, int, int)
A three-dimensional floating point vector.
Definition m_vec.hpp:101