NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
m_color_fader.hpp
1#pragma once
2#include <game/mLib/m_fader_base.hpp>
3
6class mColorFader_c : public mFaderBase_c {
7public:
9
10 virtual ~mColorFader_c();
11 virtual void setStatus(EStatus status);
12 virtual int calc();
13 virtual void draw();
14
15private:
17};
A fader that fades a color in and out.
virtual int calc()
Calculates the fader at the current frame.
virtual void draw()
Draws the fader.
u8 mAspectRatio
The screen's aspect ratio. 0 = 4:3, 1 = 16:9.
virtual void setStatus(EStatus status)
Sets the fader's status.
Base fader implementation.
EStatus
The fader's status.
A 32-bit RGBA color.
Definition m_color.hpp:6