blob: 7236d1880a4e1b6e51f33108e8f272241240f868 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#define TO_STRING2(s) L#s
#define TO_STRING(s) TO_STRING2(s)
#define MAJOR 0
#define MINOR 4
#define PATCH 0
#define VERSION_STR TO_STRING(MAJOR) L"." TO_STRING(MINOR) L"." TO_STRING(PATCH)
#define VERSION MAJOR, MINOR, PATCH
#define PRODUCT_NAME L"Witness Tutorialiser Mod"
#define WINDOW_CLASS L"WitnessTutorialiser"
|