aboutsummaryrefslogtreecommitdiff
path: root/state.c
diff options
context:
space:
mode:
Diffstat (limited to 'state.c')
-rw-r--r--state.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/state.c b/state.c
deleted file mode 100644
index bb31fa6..0000000
--- a/state.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <glib.h>
-
-#include "state.h"
-
-State *state_create(Window *win, Drawable *draw)
-{
- State *state = g_malloc(sizeof(State));
- g_assert_nonnull(state);
-
- state->win = win;
- state->draw = draw;
-
- return state;
-}
-
-void state_destroy(State *state)
-{
- g_free(state);
-}
-
-// vim: ts=4 sw=4 et