mirror of
https://github.com/zeldaret/oot3d.git
synced 2026-09-26 21:35:33 -04:00
7e74f2d3f5
* lowercase folders * rename source to src * delete upper case folders * fix submodules
15 lines
181 B
C++
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
|