MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / Color

Method Color

include/Color.hpp:16–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14class Color : public ::Color {
15public:
16 constexpr Color(const ::Color& color) : ::Color{color.r, color.g, color.b, color.a} {}
17
18 constexpr Color(unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha = 255)
19 : ::Color{red, green, blue, alpha} {};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected