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..b7e7867
--- /dev/null
+++ b/cfg.h
@@ -0,0 +1,20 @@
+#pragma once
+#include "lzr.h"
+
+enum {
+ CFG_DWIDTH = 256,
+ CFG_DHEIGHT = 256,
+ CFG_FPS = 60,
+ CFG_TSIZE = 16
+};
+
+static const LZR_Config cfg = {
+ CFG_DWIDTH,
+ CFG_DHEIGHT,
+ CFG_FPS,
+ CFG_TSIZE,
+ "jam like nobody is watching (cause they ain't)",
+ 0.0,
+ false,
+ true
+};