Files
balatro-gba-chinese-jocker-…/include/splash_screen.h
T
2025-11-23 18:43:45 -08:00

15 lines
329 B
C

#ifndef SPLASH_SCREEN_H
#define SPLASH_SCREEN_H
#include <tonc.h>
#define SPLASH_FPS 60
#define SPLASH_DURATION_SECONDS 10
#define SPLASH_DURATION_FRAMES (SPLASH_FPS * SPLASH_DURATION_SECONDS)
void splash_screen_on_init();
void splash_screen_on_update();
void splash_screen_on_exit();
#endif // SPLASH_SCREEN_H