NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
ef_drawstrategybuilder.h
1#ifndef NW4R_EF_DRAW_STRATEGY_BUILDER_H
2#define NW4R_EF_DRAW_STRATEGY_BUILDER_H
3#include <nw4r/types_nw4r.h>
4
5namespace nw4r {
6namespace ef {
7
8enum DrawStrategyType {
9 DRAWSTRATEGY_POINT,
10 DRAWSTRATEGY_LINE,
11 DRAWSTRATEGY_FREE,
12 DRAWSTRATEGY_BILLBOARD,
13 DRAWSTRATEGY_DIRECTIONAL,
14 DRAWSTRATEGY_STRIPE,
15 DRAWSTRATEGY_SMOOTHSTRIPE
16};
17
19public:
20 virtual DrawStrategy* Create(ulong type); // at 0x8
21};
22
23} // namespace ef
24} // namespace nw4r
25
26#endif