summaryrefslogtreecommitdiff
path: root/cfg.h
diff options
context:
space:
mode:
Diffstat (limited to 'cfg.h')
-rw-r--r--cfg.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/cfg.h b/cfg.h
new file mode 100644
index 0000000..308c2c9
--- /dev/null
+++ b/cfg.h
@@ -0,0 +1,20 @@
+#pragma once
+#include "lzr.h"
+
+enum {
+ CFG_DWIDTH = 421 * 2,
+ CFG_DHEIGHT = 595,
+ CFG_FPS = 30,
+ CFG_TSIZE = 16,
+};
+
+static const LZR_Config cfg = {
+ CFG_DWIDTH,
+ CFG_DHEIGHT,
+ CFG_FPS,
+ CFG_TSIZE,
+ "sunny day",
+ 0.0,
+ false,
+ true
+};