ss/include/m/m_color.h
Elijah Thomas 26af4db82d
update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

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