mirror of
https://github.com/pret/pokefirered.git
synced 2026-04-24 23:07:39 -05:00
17 lines
414 B
C
17 lines
414 B
C
#ifndef GUARD_BATTLE_BG_H
|
|
#define GUARD_BATTLE_BG_H
|
|
|
|
#include "bg.h"
|
|
|
|
extern const struct BgTemplate gBattleBgTemplates[];
|
|
|
|
void InitBattleBgsVideo(void);
|
|
void DrawBattleEntryBackground(void);
|
|
void InitLinkBattleVsScreen(u8 taskId);
|
|
void LoadBattleMenuWindowGfx(void);
|
|
void LoadBattleTextboxAndBackground(void);
|
|
void BattleInitBgsAndWindows(void);
|
|
void DrawMainBattleBackground(void);
|
|
|
|
#endif // GUARD_BATTLE_BG_H
|