pokeplatinum/include/struct_defs/underground_record.h
scbroede a3a9b10b22
Some checks are pending
build / build (push) Waiting to run
document traps (#805)
2025-11-01 13:24:17 -07:00

23 lines
601 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 unk_28_0 : 20;
u32 unk_2C_0 : 20;
u32 unk_30_0 : 20;
u32 unk_34_0 : 20;
u32 capturedFlagCount : 20;
} UndergroundRecord;
#endif // POKEPLATINUM_STRUCT_UNDERGROUND_RECORD_H