Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 175 Bytes

Color.md

File metadata and controls

13 lines (10 loc) · 175 Bytes

Color

Colors simply store red, green, blue and alpha components. Each component has a range 0 to 255, inclusive.

struct Color
{
	uint8 a, r, g, b;
}