summaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorCoderStig <79828759+CoderStig@users.noreply.github.com>2021-02-28 22:54:49 -0700
committerCoderStig <79828759+CoderStig@users.noreply.github.com>2021-03-02 01:48:17 -0700
commit5ef48aa2eba1a4a1f413e350cb5310b3f345e822 (patch)
treefe73ee5a01123cb727573231adc6c6028bee979f /src/main.h
parent630c47adffdafe74104a668f3bdc168a174e0afd (diff)
Refresh 1
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h
new file mode 100644
index 000000000..316ef9d0f
--- /dev/null
+++ b/src/main.h
@@ -0,0 +1,14 @@
+#ifndef MAIN_H
+#define MAIN_H
+
+#include "types.h"
+
+#define GFX_POOL_SIZE 6400
+struct GfxPool {
+ Gfx buffer[GFX_POOL_SIZE];
+ struct SPTask spTask;
+};
+
+extern struct GfxPool *gGfxPool;
+
+#endif