mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
35 lines
1.0 KiB
C
35 lines
1.0 KiB
C
#ifndef POKEPLATINUM_STRUCT_BOX_APPLICATION_H
|
|
#define POKEPLATINUM_STRUCT_BOX_APPLICATION_H
|
|
|
|
#include "applications/pc_boxes/box_cursor.h"
|
|
#include "applications/pc_boxes/box_customization.h"
|
|
#include "applications/pc_boxes/box_mon_selection.h"
|
|
#include "applications/pc_boxes/box_settings.h"
|
|
#include "applications/pc_boxes/box_touch_dial_helper.h"
|
|
#include "applications/pc_boxes/compare_mode_helper.h"
|
|
#include "applications/pc_boxes/pc_mon_preview.h"
|
|
#include "applications/pc_boxes/struct_box_menu.h"
|
|
|
|
#include "party.h"
|
|
#include "pc_boxes.h"
|
|
|
|
typedef struct BoxApplication {
|
|
const PCBoxes *pcBoxes;
|
|
const Party *party;
|
|
BoxCursor cursor;
|
|
BoxMonSelection selection;
|
|
BoxCustomization customization;
|
|
BoxSettings boxSettings;
|
|
PCMonPreview pcMonPreview;
|
|
BoxMenu boxMenu;
|
|
u32 boxSelectionBoxID;
|
|
BoxTouchDialHelper touchDialHelper;
|
|
u8 padding_A2[2];
|
|
CompareModeHelper compareModeHelper;
|
|
u32 boxMessageID;
|
|
u16 selectedBoxID;
|
|
u16 cursorItem;
|
|
} BoxApplication;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_BOX_APPLICATION_H
|