diff --git a/include/colour.h b/include/colour.h new file mode 100644 index 0000000..8622ce8 --- /dev/null +++ b/include/colour.h @@ -0,0 +1,14 @@ +#ifndef COLOUR_H +#define COLOUR_H + +#include "aliases/aliases.h" +#include + +typedef struct { + union { + u32 abgr; + SDL_Color colour; + }; +} colour_t; + +#endif // !COLOUR_H