mirror of
https://github.com/pret/pokeruby.git
synced 2026-08-08 10:34:12 -05:00
* Declare more non-static functions in header files * Use `(void)` for functions without arguments. * Move global-included data to seperate headers * Don't import types or global in header * Fix fieldmap imports * Revert in-code changes * Add missing newlines
14 lines
401 B
C
14 lines
401 B
C
#ifndef GUARD_TITLE_SCREEN_H
|
|
#define GUARD_TITLE_SCREEN_H
|
|
|
|
#include "sprite.h"
|
|
|
|
void SpriteCallback_VersionBannerLeft(struct Sprite *sprite);
|
|
void SpriteCallback_VersionBannerRight(struct Sprite *sprite);
|
|
void SpriteCallback_PressStartCopyrightBanner(struct Sprite *sprite);
|
|
void SpriteCallback_PokemonLogoShine(struct Sprite *sprite);
|
|
|
|
void CB2_InitTitleScreen(void);
|
|
|
|
#endif // GUARD_TITLE_SCREEN_H
|