NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
m_color.hpp
1#pragma once
2#include <nw4r/ut.h>
3
4/// @brief A 32-bit RGBA color.
5/// @ingroup mlib
6struct mColor : public nw4r::ut::Color {
7public:
8 mColor() : nw4r::ut::Color() {}
9 mColor(nw4r::ut::Color color) : nw4r::ut::Color(color) {}
10};