diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-31 10:33:32 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-31 10:33:32 +1000 |
commit | 0f703b8a5129acfa13c92ce79699d86833dcc561 (patch) | |
tree | bf18dc3263e8958d2a8cc7864f822ad21ed738b7 /src/systems/grid.h | |
parent | 0a60692230841cbcbbf67acba55d2dbb4730b6cb (diff) |
grid draw/execute
Diffstat (limited to 'src/systems/grid.h')
-rw-r--r-- | src/systems/grid.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/systems/grid.h b/src/systems/grid.h index 7d983dc..d8bc567 100644 --- a/src/systems/grid.h +++ b/src/systems/grid.h @@ -11,10 +11,11 @@ typedef struct Grid_Storage { } Grid_Storage; // --- Public API -void Grid_Init(Grid_Storage* storage); +PUB void Grid_Init(Grid_Storage* storage); // void Grid_Shutdown(Grid_Storage* storage); -void Grid_Draw(Grid_Storage* storage); +PUB void Grid_Draw(); // --- Internal +void Grid_Execute(Grid_Storage* storage); // typedef struct GridUniforms {} GridUniforms; // ShaderDataLayout GridUniforms_GetLayout(void* data);
\ No newline at end of file |