thrive/intro.h
2025-01-30 18:03:08 -05:00

19 lines
257 B
C

#ifndef _FD_INTRO_
#define _FD_INTRO_
typedef struct Intro Intro;
#include <raylib.h>
struct Intro {
Texture *textures;
int texture_count;
double timer;
};
void display_loading(void);
Intro *load_intro(void);
void intro_display(Intro *i);
#endif