summaryrefslogtreecommitdiffstats
path: root/src/init.h
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-02-14 18:03:09 (EST)
committer P. J. McDermott <pjm@nac.net>2013-02-14 18:03:09 (EST)
commit80191b41352ad20493fb62e8f3683d69133d0d24 (patch)
treecb77e93dfe476d9535ca48e732a98aae9a780ba4 /src/init.h
downloadoverworld-rpg-80191b41352ad20493fb62e8f3683d69133d0d24.zip
overworld-rpg-80191b41352ad20493fb62e8f3683d69133d0d24.tar.gz
overworld-rpg-80191b41352ad20493fb62e8f3683d69133d0d24.tar.bz2
Initial commit.
Diffstat (limited to 'src/init.h')
-rw-r--r--src/init.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/init.h b/src/init.h
new file mode 100644
index 0000000..f04b1fe
--- /dev/null
+++ b/src/init.h
@@ -0,0 +1,11 @@
+#ifndef INIT_H
+#define INIT_H
+
+#include <SDL.h>
+
+SDL_Surface *screen;
+
+void init(void);
+void quit(int status);
+
+#endif