mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-17 03:57:38 +01:00
d113d5efd9
Co-authored-by: LOuroboros <lunosouroboros@gmail.com>
25 lines
584 B
C
25 lines
584 B
C
#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
|
|
|
|
void BattleInitBgsAndWindows(void);
|
|
void InitBattleBgsVideo(void);
|
|
void LoadBattleMenuWindowGfx(void);
|
|
void DrawMainBattleBackground(void);
|
|
void LoadBattleTextboxAndBackground(void);
|
|
void InitLinkBattleVsScreen(u8 taskId);
|
|
void DrawBattleEntryBackground(void);
|
|
bool8 LoadChosenBattleElement(u8 caseId);
|
|
|
|
#endif // GUARD_BATTLE_BG_H
|