Files
oot3d/include/color.hpp
T
gamestabled 7e74f2d3f5 Lower case folders and rename Source to src (#3)
* lowercase folders

* rename source to src

* delete upper case folders

* fix submodules
2024-09-28 14:46:55 -04:00

15 lines
181 B
C++

#ifndef _COLOR_H_
#define _COLOR_H_
#include "z3Dvec.hpp"
typedef struct {
u8 r, g, b;
} Color_RGB8;
typedef struct {
u8 r, g, b, a;
} Color_RGBA8;
#endif