mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-07-09 20:41:31 -04:00
Add missing file
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#ifndef U64TYPES_H
|
||||
#define U64TYPES_H
|
||||
|
||||
#include "types.h"
|
||||
|
||||
typedef struct {
|
||||
u32 r:8;
|
||||
u32 g:8;
|
||||
u32 b:8;
|
||||
u32 a:8;
|
||||
} rgba8888_t;
|
||||
|
||||
typedef union {
|
||||
u32 rgba8888;
|
||||
rgba8888_t c;
|
||||
} rgba8888;
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user