Files
BlitzNext/config/config.hpp
T
Michael Fabian 'Xaymar' Dirks 3bc04e1602 config: Switch to CMake
2019-01-18 15:51:40 +01:00

29 lines
321 B
C++

#ifndef CONFIG_H
#define CONFIG_H
#define BASE_VER 1108
#define PRO
#ifdef PRO
#define PRO_F 0x010000
#else
#define PRO_F 0
#endif
#ifdef DEMO
#define DEMO_F 0x080000
#else
#define DEMO_F 0
#endif
#ifdef EDU
#define EDU_F 0x200000
#else
#define EDU_F 0
#endif
#define VERSION (BASE_VER|PRO_F|DEMO_F|EDU_F)
#endif