mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-22 23:20:49 -05:00
19 lines
386 B
C
19 lines
386 B
C
#ifndef POKEPLATINUM_STRUCT_BOX_SETTINGS_H
|
|
#define POKEPLATINUM_STRUCT_BOX_SETTINGS_H
|
|
|
|
enum BoxMode {
|
|
PC_MODE_DEPOSIT = 0,
|
|
PC_MODE_WITHDRAW,
|
|
PC_MODE_MOVE_MONS,
|
|
PC_MODE_MOVE_ITEMS,
|
|
PC_MODE_COMPARE
|
|
};
|
|
|
|
typedef struct BoxSettings {
|
|
u8 boxMode;
|
|
u8 isCursorFastMode;
|
|
u16 monSpriteTransparencyMask;
|
|
} BoxSettings;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_BOX_SETTINGS_H
|