14 lines
No EOL
389 B
C++
14 lines
No EOL
389 B
C++
#pragma once
|
|
|
|
#define PROGRAM_NAME "Space Strategy"
|
|
#define PROGRAM_VERSION "0.1.0"
|
|
#define PROGRAM_INFO (std::string)PROGRAM_NAME + " v" + PROGRAM_VERSION
|
|
#define PROGRAM_BUILD 0
|
|
#define PROGRAM_CREATOR "Aslan2142"
|
|
#define COPYRIGHT "Copyright 2019"
|
|
#define RESOLUTION_X 1920
|
|
#define RESOLUTION_Y 1080
|
|
#define BIT_DEPTH 24
|
|
#define MAX_FRAMERATE 60
|
|
#define VSYNC_ENABLED true
|
|
#define DEBUG |