You've already forked PrimeRemasterStructs
mirror of
https://github.com/PrimeDecomp/PrimeRemasterStructs.git
synced 2026-03-31 14:23:23 -07:00
36 lines
637 B
Plaintext
36 lines
637 B
Plaintext
#ifndef _CDATAENUMOBJECT
|
|
#define _CDATAENUMOBJECT
|
|
|
|
typedef struct {
|
|
uint unk1 <format = hex>;
|
|
GUID unk2;
|
|
uint unk3 <format = hex>;
|
|
GUID unk4;
|
|
} CDataEnumValue;
|
|
typedef struct {
|
|
uint id;
|
|
uint value;
|
|
} Unk;
|
|
|
|
typedef struct {
|
|
uint unkCount;
|
|
Unk enums[unkCount];
|
|
uint objectIdCount;
|
|
GUID objectIds[objectIdCount];
|
|
} CDataEnumObject;
|
|
|
|
typedef struct {
|
|
uint32 intCount;
|
|
if (intCount > 0) {
|
|
uint32 ints[intCount];
|
|
}
|
|
uint32 boolCount;
|
|
if (boolCount > 0) {
|
|
bool bools[boolCount];
|
|
}
|
|
CGuid enumId;
|
|
CGuid unkId;
|
|
} CDataEnumBitField;
|
|
|
|
#endif// _CDATAENUMOBJECT
|