#ifndef __COLOR_H__
#define __COLOR_H__
/**
* A color to display on the screen.
* The color is represented by its red, green, and blue components.
* Each component must be between 0 (black) and 1 (white).
*/
typedef struct {
float r;
float g;
float b;
} rgb_color_t;
#endif // #ifndef __COLOR_H__
-
Caleb C. Sander authored7dc0d3db