diff options
Diffstat (limited to 'src/sldj.h')
-rw-r--r-- | src/sldj.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/sldj.h b/src/sldj.h new file mode 100644 index 0000000..4db6afb --- /dev/null +++ b/src/sldj.h @@ -0,0 +1,22 @@ +#include <stdio.h> +#include <stdlib.h> +#include <raylib.h> +#include <math.h> +#include <stdint.h> + +#include "sldjConfig.h" +#include "util.h" + +#ifndef SLDJ_H +#define SLDJ_H + +typedef struct Sldj { + RenderTexture screenTexture; + int frameCounter; +} Sldj; + +void initSldj(Sldj* sldj); +void updateSldj(Sldj* sldj); +void closeSldj(Sldj* sldj); + +#endif |