aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2023-05-02 21:02:04 +1000
committerquou <quou@disroot.org>2023-05-02 21:02:04 +1000
commitc1efdf9b0875f2a39488a86cd838947a24fab9fc (patch)
treeb459d024fa99029758f8d2f8630470fe6060122e /config.h
Initial commit.
Diffstat (limited to 'config.h')
-rw-r--r--config.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..91363a9
--- /dev/null
+++ b/config.h
@@ -0,0 +1,18 @@
+#ifndef config_h
+#define config_h
+
+#define game_name "malloc(bullet);"
+
+#define default_window_w 320
+#define default_window_h 240
+
+#define renderer_w 320
+#define renderer_h 240
+#define renderer_scale 4
+
+#define no_sound 1
+
+/* 16 KB should be enough. */
+#define asset_memory (1024 * 1024 * 16)
+
+#endif