summaryrefslogtreecommitdiff
path: root/cfg.hpp
blob: 74472687559214fd4de645ec05c30dbd48d7d998 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once
#include "lzr.h"

enum {
	CFG_DWIDTH  = 512,
	CFG_DHEIGHT = 512,
	CFG_FPS     = 60,
	CFG_TSIZE   = 16
};

static const LZR_Config cfg = {
	CFG_DWIDTH,
	CFG_DHEIGHT,
	CFG_FPS,
	CFG_TSIZE,
	"my life is not changing",
	0.0,
	false,
	true
};