-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.cpp
More file actions
21 lines (16 loc) · 812 Bytes
/
Copy pathConstants.cpp
File metadata and controls
21 lines (16 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "Headers.h"
#include "Constants.h"
const unsigned Constants::windowWidth = 1000;
const unsigned Constants::windowHeigth = 1000;
const float Constants::gridSizeFloat = 25.0f;
const unsigned Constants::gridSizeUnsigned = static_cast<unsigned>(Constants::gridSizeFloat);
const int Constants::mapSizeX = Constants::windowWidth / Constants::gridSizeFloat;
const int Constants::mapSizeY = Constants::windowHeigth / Constants::gridSizeFloat;
bool Constants::singleQuitClickDetection = false;
bool Constants::insertStartPosition = false;
bool Constants::insertEndPosition = false;
bool Constants::isStaticModeSeleceted = false;
bool Constants::isDynamicModeSelected = false;
bool Constants::isPathFound = false;
bool Constants::isMapGeneratorSelected = false;
bool Constants::mouseRealeseDetection = false;