pokeplatinum/include/struct_defs/underground_record.h
scbroede 46a02405fb
Some checks failed
build / build (push) Has been cancelled
document underground pc (#843)
2025-12-05 14:53:10 -08:00

23 lines
615 B
C

#ifndef POKEPLATINUM_STRUCT_UNDERGROUND_RECORD_H
#define POKEPLATINUM_STRUCT_UNDERGROUND_RECORD_H
typedef struct UndergroundRecord {
u32 trainerScore : 20;
u32 peopleMet : 20;
u32 numGiftsGiven : 20;
u32 unk_0C_0 : 20;
u32 numSpheresDug : 20;
u32 numFossilsDug : 20;
u32 unk_18_0 : 20;
u32 numTrapHits : 20;
u32 numTrapsTriggered : 20;
u32 numPlayersHelped : 20;
u32 numGiftsReceived : 20;
u32 timesFlagTaken : 20;
u32 unk_30_0 : 20;
u32 unk_34_0 : 20;
u32 capturedFlagCount : 20;
} UndergroundRecord;
#endif // POKEPLATINUM_STRUCT_UNDERGROUND_RECORD_H