Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
302 B · 15 lines
C
at master
123456789101112131415#pragma once
class Color{private: int colour;
public: //Creates an opaque sRGB color with the specified red, green, and blue values in the range (0.0 - 1.0). Color( float r, float g, float b); Color( int r, int g, int b);
static Color getHSBColor(float h, float s, float b); int getRGB();};