-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIConstants.cpp
More file actions
30 lines (25 loc) · 835 Bytes
/
UIConstants.cpp
File metadata and controls
30 lines (25 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef UI_CONSTANTS
#define UI_CONSTANTS
int const SCREEN_WIDTH{1080};
int const SCREEN_HEIGHT{720};
const char* whiteFiles[] {
"assets/pieces/100/whitePawn.png",
"assets/pieces/100/whiteBishop.png",
"assets/pieces/100/whiteKnight.png",
"assets/pieces/100/whiteRook.png",
"assets/pieces/100/whiteQueen.png",
"assets/pieces/100/whiteKing.png"
};
const char* blackFiles[] {
"assets/pieces/100/blackPawn.png",
"assets/pieces/100/blackBishop.png",
"assets/pieces/100/blackKnight.png",
"assets/pieces/100/blackRook.png",
"assets/pieces/100/blackQueen.png",
"assets/pieces/100/blackKing.png"
};
const char* captureCirceFile = "assets/UI/captureCircle.png";
const char* moveCircleFile = "assets/UI/moveCircle.png";
const int captureIconSize = 40;
const int captureIconPadding = 5;
#endif