mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 11:37:40 +01:00
24 lines
594 B
C
24 lines
594 B
C
#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;
|
|
};
|
|
|
|
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);
|
|
void DrawTerrainTypeBattleBackground(void);
|
|
|
|
#endif // GUARD_BATTLE_BG_H
|