2020-06-19 00:01:32 +02:00
|
|
|
#ifndef GUARD_CONTEST_LINK_H
|
|
|
|
#define GUARD_CONTEST_LINK_H
|
2018-05-05 00:59:59 +02:00
|
|
|
|
2020-08-15 20:33:08 +02:00
|
|
|
void Task_LinkContest_CommunicateAppealsState(u8);
|
2020-07-24 06:14:53 +02:00
|
|
|
void Task_LinkContest_CommunicateFinalStandings(u8);
|
2020-08-13 09:09:47 +02:00
|
|
|
void Task_LinkContest_Init(u8);
|
|
|
|
void Task_LinkContest_CommunicateMonsRS(u8);
|
|
|
|
void Task_LinkContest_CommunicateRngRS(u8);
|
|
|
|
void Task_LinkContest_CommunicateLeaderIdsRS(u8);
|
|
|
|
void Task_LinkContest_CommunicateCategoryRS(u8);
|
|
|
|
void Task_LinkContest_CommunicateMonIdxs(u8);
|
|
|
|
void Task_LinkContest_StartCommunicationEm(u8);
|
2020-07-24 06:14:53 +02:00
|
|
|
void Task_LinkContest_CommunicateRound1Points(u8);
|
|
|
|
void Task_LinkContest_CommunicateTurnOrder(u8);
|
2020-08-13 09:09:47 +02:00
|
|
|
void Task_LinkContest_FinalizeConnection(u8);
|
|
|
|
void Task_LinkContest_CommunicateMoveSelections(u8);
|
|
|
|
bool32 LinkContest_TryLinkStandby(s16 *);
|
2020-07-12 02:25:56 +02:00
|
|
|
bool32 LinkContest_SendBlock(void *, u16);
|
|
|
|
bool8 LinkContest_GetBlockReceivedFromAllPlayers(void);
|
|
|
|
bool8 LinkContest_GetBlockReceived(u8);
|
2020-08-13 09:09:47 +02:00
|
|
|
u8 LinkContest_GetLeaderIndex(u8 *);
|
2018-05-05 00:59:59 +02:00
|
|
|
|
2020-06-19 00:01:32 +02:00
|
|
|
#endif //GUARD_CONTEST_LINK_H
|