Files
PrimeRemasterStructs/CEvalSystem.bt
2023-02-13 01:06:03 -08:00

27 lines
528 B
Plaintext

#ifndef CEVALSYSTEM_BT
#define CEVALSYSTEM_BT
typedef struct CEvalId {
uint unk1;
} CEvalId;
typedef struct CEvalDataHandle {
uint unk1;
uint unks[unk1 / 4];
} CEvalDataHandle;
typedef struct CEvalDataContext {
uint dataLen;
uint dataHandleCount;
char data[dataLen * 4];
CEvalDataHandle handles[dataHandleCount] <optimize = false>;
} CEvalDataContext;
typedef struct CEvalSystem {
CEvalDataContext context;
uint unk1;
uint unk2;
uint unk3;
} CEvalSystem;
#endif // CEVALSYSTEM_BT