Color

This module contains all the types which the various drawing modules use. In the C source the types were duplicated across source files, probably to avoid too many #include's.

struct Color {
float r;
float g;
float b;
float a;
}

Meta