mirror of
https://github.com/zeldaret/tp
synced 2026-06-01 09:47:52 -04:00
2f4904dae2
* move d_a_itembase_static * move d_a_item_static * moved Z2StatusMgr * clang * fixes * clang? * move d_save * move d_meter2_info * some d_meter2_info fixes * move most d_a_player * move d_bg_s stuff * move c_cc_s stuff * move d_cc stuff * move d_attention / d_event / d_stage
28 lines
349 B
C
28 lines
349 B
C
#ifndef GXTEXTURE_H
|
|
#define GXTEXTURE_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
struct _GXColor {
|
|
void operator=(const _GXColor& rhs) {
|
|
r = rhs.r;
|
|
g = rhs.g;
|
|
b = rhs.b;
|
|
a = rhs.a;
|
|
}
|
|
|
|
u8 r;
|
|
u8 g;
|
|
u8 b;
|
|
u8 a;
|
|
};
|
|
|
|
struct GXColorS10 {
|
|
s16 r;
|
|
s16 g;
|
|
s16 b;
|
|
s16 a;
|
|
};
|
|
|
|
#endif /* GXTEXTURE_H */
|