pokeemerald/include/battle_bg.h

25 lines
584 B
C
Raw Normal View History

2017-12-17 20:10:57 +01:00
#ifndef GUARD_BATTLE_BG_H
#define GUARD_BATTLE_BG_H
#if P_ENABLE_DEBUG == TRUE
struct BattleBackground
{
const void *tileset;
const void *tilemap;
const void *entryTileset;
const void *entryTilemap;
const void *palette;
};
#endif
2018-06-17 16:48:58 +02:00
void BattleInitBgsAndWindows(void);
2019-11-07 01:18:11 +01:00
void InitBattleBgsVideo(void);
2018-06-17 16:48:58 +02:00
void LoadBattleMenuWindowGfx(void);
2017-12-17 20:10:57 +01:00
void DrawMainBattleBackground(void);
void LoadBattleTextboxAndBackground(void);
2019-11-07 01:18:11 +01:00
void InitLinkBattleVsScreen(u8 taskId);
2018-06-17 16:48:58 +02:00
void DrawBattleEntryBackground(void);
2017-12-17 20:10:57 +01:00
bool8 LoadChosenBattleElement(u8 caseId);
#endif // GUARD_BATTLE_BG_H