NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
ef_drawlinestrategy.h
1#ifndef NW4R_EF_DRAW_STRATEGY_DRAW_LINE_STRATEGY_H
2#define NW4R_EF_DRAW_STRATEGY_DRAW_LINE_STRATEGY_H
3#include <nw4r/types_nw4r.h>
4
5#include <nw4r/ef/drawstrategy/ef_drawstrategyimpl.h>
6
7namespace nw4r {
8namespace ef {
9
10class DrawLineStrategy : public DrawStrategyImpl {
11public:
12 DrawLineStrategy();
13
14 virtual void Draw(const DrawInfo& rInfo,
15 ParticleManager* pManager); // at 0xC
16
17 void InitGraphics(const DrawInfo& rInfo, ParticleManager* pManager);
18};
19
20} // namespace ef
21} // namespace nw4r
22
23#endif