mirror of
https://github.com/encounter/mkdd.git
synced 2026-03-30 11:30:02 -07:00
16 lines
302 B
C
16 lines
302 B
C
#ifndef _JSYSTEM_RESTLUT_H
|
|
#define _JSYSTEM_RESTLUT_H
|
|
|
|
#include <dolphin/gx.h>
|
|
#include "types.h"
|
|
|
|
struct ResTLUT
|
|
{
|
|
u8 mFormat; // _00, GXTlutFormat
|
|
u8 mTransparency; // _01, JUTTransparency
|
|
u16 mNumColors; // _02
|
|
u8 _04[0x1C]; // _04
|
|
u32 _20; // _20
|
|
};
|
|
|
|
#endif |