engine-psx/include/screens/slide.h

19 lines
377 B
C
Raw Permalink Normal View History

2024-12-31 21:11:44 -03:00
#ifndef SCREENS_SLIDE_H
#define SCREENS_SLIDE_H
typedef enum {
SLIDE_COMINGSOON = 0,
2025-02-15 20:51:04 -03:00
SLIDE_SEGALOGO = 1,
SLIDE_CREATEDBY = 2,
2024-12-31 21:11:44 -03:00
2025-01-01 13:53:39 -03:00
SLIDE_NUM_SLIDES = (SLIDE_CREATEDBY + 1),
2024-12-31 21:11:44 -03:00
} SlideOption;
void screen_slide_load();
void screen_slide_unload(void *);
void screen_slide_update(void *);
void screen_slide_draw(void *);
void screen_slide_set_next(SlideOption);
#endif