aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorquou <quou@disroot.org>2024-09-23 21:11:29 +1000
committerquou <quou@disroot.org>2024-09-23 21:11:29 +1000
commit259237fae792e8f19d9b7920b2354f75bc1789e2 (patch)
treeaf079430f30f7df1b76efc4f96f520b0b6eee0af /config.h
initial commit, basic platform and rendering code.
Diffstat (limited to 'config.h')
-rw-r--r--config.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..ed03b67
--- /dev/null
+++ b/config.h
@@ -0,0 +1,15 @@
+#ifndef config_h
+#define config_h
+
+#define memory_size (1024 * 8)
+#define app_memory_size (1024 * 4)
+
+#define max_pc_window_w 3000
+#define max_pc_window_h 3000
+
+#define viewport_w 128
+#define viewport_h 128
+#define default_scale 3
+#define default_mpf 50
+
+#endif