pokeemerald/include/battle_bg.h

24 lines
594 B
C
Raw Normal View History

2017-12-17 20:10:57 +01:00
#ifndef GUARD_BATTLE_BG_H
#define GUARD_BATTLE_BG_H
struct BattleBackground
{
const void *tileset;
const void *tilemap;
const void *entryTileset;
const void *entryTilemap;
const void *palette;
};
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);
2020-11-18 03:45:27 +01:00
void DrawTerrainTypeBattleBackground(void);
2017-12-17 20:10:57 +01:00
#endif // GUARD_BATTLE_BG_H