mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-08-16 06:09:46 -05:00
54 lines
1.5 KiB
C
54 lines
1.5 KiB
C
#ifndef POKEPLATINUM_STRUCT_BATTLE_FRONTIER_H
|
|
#define POKEPLATINUM_STRUCT_BATTLE_FRONTIER_H
|
|
|
|
#include "constants/battle_frontier_stats.h"
|
|
|
|
#include "struct_defs/struct_0202D060.h"
|
|
#include "struct_defs/struct_0202D080.h"
|
|
#include "struct_defs/struct_0202D750.h"
|
|
#include "struct_defs/struct_0202D764.h"
|
|
#include "struct_defs/struct_0202FF58.h"
|
|
#include "struct_defs/struct_020300F4.h"
|
|
#include "struct_defs/struct_020302DC.h"
|
|
#include "struct_defs/struct_0203041C.h"
|
|
#include "struct_defs/struct_020304A0.h"
|
|
#include "struct_defs/struct_020305B8.h"
|
|
|
|
#include "battle_hall_save.h"
|
|
#include "wifi_list.h"
|
|
|
|
typedef struct BattleFrontierStats {
|
|
u16 soloStats[STATS_NUM_SOLO_STATS_AND_ACTIVE_FLAGS];
|
|
u16 wfcStats[MAX_FRIENDS][STATS_NUM_WFC_STATS];
|
|
} BattleFrontierStats;
|
|
|
|
typedef struct BattleFrontierSave {
|
|
BattleFrontierStats stats;
|
|
union {
|
|
UnkStruct_0202D060 unk_8E0_val1;
|
|
UnkStruct_0202FF58 unk_8E0_val2;
|
|
BattleHallSave hallSave;
|
|
UnkStruct_020302DC unk_8E0_val4;
|
|
UnkStruct_020304A0 unk_8E0_val5;
|
|
};
|
|
struct {
|
|
UnkStruct_0202D750 unk_00;
|
|
UnkStruct_0202D080 unk_168;
|
|
UnkStruct_0202D764 unk_188;
|
|
} unk_950;
|
|
struct {
|
|
UnkStruct_020300F4 unk_00;
|
|
} unk_1614;
|
|
struct {
|
|
BattleHallStreakFlags streakFlags;
|
|
} hall;
|
|
struct {
|
|
UnkStruct_0203041C unk_00;
|
|
} unk_161C;
|
|
struct {
|
|
UnkStruct_020305B8 unk_00;
|
|
} unk_1620;
|
|
} BattleFrontierSave;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_BATTLE_FRONTIER_H
|