Class for storing components of a color.
ubyte red
Red component of color. (0-255)
ubyte green
Green component of color. (0-255)
ubyte blue
Blue component of color. (0-255)
ubyte alpha
Alpha component of color. (0-255)
Color()
Initializes all components to 255. (Solid White)
Color(ubyte r, ubyte g, ubyte b, ubyte a = 255)
Initializes color, component by component.
setColor
Creates color, component by component.
Makes the Color the current openGL color. (glColor4ub)