diff options
Diffstat (limited to 'src/core/state.c')
-rw-r--r-- | src/core/state.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/state.c b/src/core/state.c new file mode 100644 index 0000000..91bd9e4 --- /dev/null +++ b/src/core/state.c @@ -0,0 +1,11 @@ +#include "state.h" + +SandState sand_create_state(SandConfig config) { + return (SandState) { + .config = config, + }; +} + +void sand_destroy_state(SandState *S) { + (void) S; +} |