You've already forked PrimeRemasterStructs
mirror of
https://github.com/PrimeDecomp/PrimeRemasterStructs.git
synced 2026-03-31 14:23:23 -07:00
20 lines
337 B
Plaintext
20 lines
337 B
Plaintext
#ifndef _CCHUNKDESCRIPTOR
|
|
#define _CCHUNKDESCRIPTOR
|
|
#include "Common.bt"
|
|
|
|
typedef struct
|
|
{
|
|
FourCC id;
|
|
uint64 size <format=hex>;
|
|
uint32 unk;
|
|
uint64 skip <format=hex>;
|
|
FSkip(skip);
|
|
} ChunkDescriptor <
|
|
name=(id + " chunk header"),
|
|
comment=(SizeComment(size)),
|
|
bgcolor=cDkAqua
|
|
>;
|
|
|
|
|
|
#endif// _CCHUNKDESCRIPTOR
|