NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
ef_emform.h
1#ifndef NW4R_EF_EMFORM_EMFORM_H
2#define NW4R_EF_EMFORM_EMFORM_H
3#include <nw4r/types_nw4r.h>
4
5namespace nw4r {
6namespace ef {
7
8// Forward declarations
9class EmitterForm;
10
11enum EmitFormType {
12 EMITFORMTYPE_DISC,
13 EMITFORMTYPE_LINE,
14 EMITFORMTYPE_CUBE = 5,
15 EMITFORMTYPE_CYLINDER = 7,
16 EMITFORMTYPE_SPHERE,
17 EMITFORMTYPE_POINT,
18 EMITFORMTYPE_TORUS,
19};
20
22public:
23 virtual EmitterForm* Create(EmitFormType type); // at 0x8
24};
25
26} // namespace ef
27} // namespace nw4r
28
29#endif