mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-24 15:07:47 -05:00
19 lines
439 B
C
19 lines
439 B
C
#ifndef POKEPLATINUM_STRUCT_BOX_TOUCH_DIAL_HELPER_H
|
|
#define POKEPLATINUM_STRUCT_BOX_TOUCH_DIAL_HELPER_H
|
|
|
|
enum TouchDials {
|
|
TOUCH_DIALS_NONE,
|
|
TOUCH_DIALS_BOX_JUMP,
|
|
TOUCH_DIALS_MARKINGS
|
|
};
|
|
|
|
typedef struct BoxTouchDialHelper {
|
|
u8 selectedTouchDial;
|
|
u8 markingsButtonsScrollOffset;
|
|
u8 touchDialOffset;
|
|
u8 padding_03;
|
|
s16 scrollDelta;
|
|
} BoxTouchDialHelper;
|
|
|
|
#endif // POKEPLATINUM_STRUCT_BOX_TOUCH_DIAL_HELPER_H
|