mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-25 07:29:01 -05:00
Documents the last unknown components of SpecialEncounter. Also some other things, sorry.
16 lines
365 B
C
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
|