aboutsummaryrefslogtreecommitdiffstats
path: root/src/sldj.h
diff options
context:
space:
mode:
authornathansmith117 <nathansmith117@sdf.org>2025-02-03 13:46:19 +0000
committernathansmith117 <nathansmith117@sdf.org>2025-02-03 13:46:19 +0000
commit305c224104be6558f2ece595a47cf29348b60d66 (patch)
treef36af90ce04dade5b520a24c77176ca7ebb4ef65 /src/sldj.h
downloadsldj-305c224104be6558f2ece595a47cf29348b60d66.tar.gz
sldj-305c224104be6558f2ece595a47cf29348b60d66.tar.bz2
sldj-305c224104be6558f2ece595a47cf29348b60d66.zip
first commit
Diffstat (limited to 'src/sldj.h')
-rw-r--r--src/sldj.h22
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