summaryrefslogtreecommitdiff
path: root/cfg.h
diff options
context:
space:
mode:
authorkdx <kdx@42l.fr>2023-02-18 00:31:21 +0100
committerkdx <kdx@42l.fr>2023-02-18 00:31:21 +0100
commit80635fd59c54d8ba4591029114bea3755cccb816 (patch)
treecc7465ec59082920614772b22226f5b742fe515a /cfg.h
downloadbozojam-80635fd59c54d8ba4591029114bea3755cccb816.tar.gz
initial commit
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
+};