mirror of
https://github.com/pret/pokepinballrs.git
synced 2026-05-06 05:06:59 -05:00
Some checks failed
CI / build (push) Has been cancelled
* kickback naming, catch state enum * sound renaming through 98 * initial block * pre split comments * launcher clarity, board designations * split out save_and_restore file * board indicator file split, board setup named * rename debug, split off center_capture_hole * checkpoint * pointer carving
23 lines
800 B
C
23 lines
800 B
C
#ifndef GUARD_FUNCTIONS_RUBY_H
|
|
#define GUARD_FUNCTIONS_RUBY_H
|
|
|
|
#include "functions_main_boards.h"
|
|
|
|
extern void UpdateNuzleafEntity(void);
|
|
extern void DrawRubyNuzleafPlatformSprite(void);
|
|
extern void RubyPondTriBumperHandleHitAndDraw(void);
|
|
extern void DrawWhiscash(void);
|
|
extern void AnimateSharpedoEntity(void);
|
|
extern void UpdateChikoritaAttackAnimation(void);
|
|
extern void AnimateChikoritaSprite(void);
|
|
extern void UpdateGulpinBossState(void);
|
|
|
|
extern void UpdateRubyRampPrizeGate(void);
|
|
extern void DrawRubySideBumperSprites(void);
|
|
extern void UpdateRubySideBumperAnimation(void);
|
|
extern void UpdateRubyBoardEntityRendering(void);
|
|
extern void UpdateRubyBoardEntityLogic(void);
|
|
extern void HandleRubyFlipperButtonInput(void);
|
|
extern void RubyPond_EntityLogic(void);
|
|
|
|
#endif //GUARD_FUNCTIONS_RUBY_H
|