aboutsummaryrefslogtreecommitdiff
path: root/state.h
diff options
context:
space:
mode:
Diffstat (limited to 'state.h')
-rw-r--r--state.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/state.h b/state.h
deleted file mode 100644
index 696b657..0000000
--- a/state.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef COMET_STATE_H
-#define COMET_STATE_H
-
-#include "window.h"
-#include "draw.h"
-
-typedef struct State State;
-
-struct State {
- Window *win;
- Drawable *draw;
-};
-
-State *state_create(Window *win, Drawable *draw);
-
-void state_destroy(State *state);
-
-#endif
-
-// vim: ts=4 sw=4 et