thrive/intro.h

19 lines
257 B
C
Raw Permalink Normal View History

2025-01-24 18:22:26 -05:00
#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