mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 11:37:40 +01:00
18 lines
304 B
C
18 lines
304 B
C
#ifndef GUARD_EV_IV_SCREEN_H
|
|
#define GUARD_EV_IV_SCREEN_H
|
|
|
|
struct EvIvScreen
|
|
{
|
|
u8 state;
|
|
u8 gfxStep;
|
|
u8 callbackStep;
|
|
u8 currMon;
|
|
u16 totalAttributes[3];
|
|
u16 hatch;
|
|
u16 tilemapBuffer[0x400];
|
|
};
|
|
|
|
extern EWRAM_DATA struct EvIvScreen gEvIvScreen;
|
|
|
|
#endif // GUARD_EV_IV_SCREEN_H
|