pokeplatinum/include/struct_defs/radar_chain_records.h
TheSylphIsIn 5cfa8894af Finish documenting special_encounter
Documents the last unknown components of SpecialEncounter. Also some other things, sorry.
2025-02-04 16:52:48 -05:00

16 lines
365 B
C

#ifndef POKEPLATINUM_STRUCT_RADAR_CHAIN_RECORDS_H
#define POKEPLATINUM_STRUCT_RADAR_CHAIN_RECORDS_H
#define NUM_RADAR_RECORDS 3
typedef struct ChainRecord {
u16 species;
u16 chainCount;
} ChainRecord;
typedef struct RadarChainRecords {
ChainRecord records[NUM_RADAR_RECORDS];
} RadarChainRecords;
#endif // POKEPLATINUM_STRUCT_RADAR_CHAIN_RECORDS_H