mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-24 23:18:36 -05:00
16 lines
319 B
C
16 lines
319 B
C
#ifndef POKEPLATINUM_SPECIESCAUGHTSTATUS_H
|
|
#define POKEPLATINUM_SPECIESCAUGHTSTATUS_H
|
|
|
|
enum CaughtStatus {
|
|
CS_UNENCOUNTERED = 0,
|
|
CS_ENCOUNTERED = 1,
|
|
CS_CAUGHT = 2,
|
|
};
|
|
|
|
typedef struct {
|
|
int species;
|
|
enum CaughtStatus caughtStatus;
|
|
} SpeciesCaughtStatus;
|
|
|
|
#endif // POKEPLATINUM_SPECIESCAUGHTSTATUS_H
|