diff options
| author | CoderStig <79828759+CoderStig@users.noreply.github.com> | 2021-02-28 22:54:49 -0700 |
|---|---|---|
| committer | CoderStig <79828759+CoderStig@users.noreply.github.com> | 2021-03-02 01:48:17 -0700 |
| commit | 5ef48aa2eba1a4a1f413e350cb5310b3f345e822 (patch) | |
| tree | fe73ee5a01123cb727573231adc6c6028bee979f /src/main.h | |
| parent | 630c47adffdafe74104a668f3bdc168a174e0afd (diff) | |
Refresh 1
Diffstat (limited to 'src/main.h')
| -rw-r--r-- | src/main.h | 14 |
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 |
