mirror of
https://github.com/zeldaret/ss.git
synced 2024-12-04 11:54:36 +00:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
13 lines
274 B
C
13 lines
274 B
C
#ifndef M_COLOR_H
|
|
#define M_COLOR_H
|
|
|
|
#include "nw4r/ut/ut_Color.h"
|
|
#include "rvl/GX.h"
|
|
|
|
struct mColor : public nw4r::ut::Color {
|
|
mColor() : nw4r::ut::Color() {}
|
|
mColor(int red, int green, int blue, int alpha) : nw4r::ut::Color(red, green, blue, alpha) {}
|
|
};
|
|
|
|
#endif
|