diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-06-15 13:20:52 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-15 13:20:52 -0400 |
commit | 96e70f26eb3fb7bb88e6b211c3fc6298964404a1 (patch) | |
tree | 3745500ae9226dc74503b5b6660fa0315cd5aead /include/party.h | |
parent | b96fe608981c7693210f8711b64b1573edae71dc (diff) | |
parent | c1347194db3ca34035901203deaebf0141357524 (diff) |
Merge pull request #168 from PikalaxALT/pikalax_work
Decompile party.s
Diffstat (limited to 'include/party.h')
-rw-r--r-- | include/party.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/include/party.h b/include/party.h index b6065a3f..eca62239 100644 --- a/include/party.h +++ b/include/party.h @@ -3,17 +3,18 @@ #include "pokemon.h" -#define PARTY_SIZE 6 - -struct PlayerParty -{ - u32 maxCount; - u32 curCount; - struct Pokemon mons[PARTY_SIZE]; -}; - BOOL PartyHasMon(struct PlayerParty * party_p, u16 species); int GetPartyCount(struct PlayerParty * party_p); struct Pokemon * GetPartyMonByIndex(struct PlayerParty * party_p, int idx); +u32 FUN_0206B8A4(void); +struct PlayerParty * FUN_0206B8AC(u32 heap_id); +void FUN_0206B8C0(struct PlayerParty * party); +void FUN_0206B8CC(struct PlayerParty * party, int count); +BOOL FUN_0206B900(struct PlayerParty * party, struct Pokemon * pokemon); +BOOL FUN_0206B938(struct PlayerParty * party, int pos); +void FUN_0206B9DC(struct PlayerParty * party, int pos, struct Pokemon * pokemon); +BOOL FUN_0206BA38(struct PlayerParty * party, int pos1, int pos2); +void FUN_0206BAD0(struct PlayerParty * src, struct PlayerParty * dest); +struct PlayerParty * FUN_0206BB1C(void * ptr); #endif //POKEDIAMOND_PARTY_H |