VS support
parent
e6f950032a
commit
6fba295139
|
@ -14,6 +14,7 @@ namespace Consts {
|
||||||
const std::string PROJECT_NAME = "engine";
|
const std::string PROJECT_NAME = "engine";
|
||||||
const bool USE_LOG_FILE = true;
|
const bool USE_LOG_FILE = true;
|
||||||
const bool USE_OPEN_GL = true;
|
const bool USE_OPEN_GL = true;
|
||||||
|
const bool SHOW_COORDINATES = true;
|
||||||
|
|
||||||
const double PI = 3.14159265358979323846264338327950288;
|
const double PI = 3.14159265358979323846264338327950288;
|
||||||
const double EPS = 0.000001;
|
const double EPS = 0.000001;
|
||||||
|
|
|
@ -18,8 +18,8 @@ private:
|
||||||
std::string _name;
|
std::string _name;
|
||||||
|
|
||||||
double _triPerSec = 0;
|
double _triPerSec = 0;
|
||||||
bool _debugText = true;
|
|
||||||
bool _updateWorld = true;
|
bool _updateWorld = true;
|
||||||
|
bool _debugText = Consts::SHOW_COORDINATES;
|
||||||
bool _useOpenGL = Consts::USE_OPEN_GL;
|
bool _useOpenGL = Consts::USE_OPEN_GL;
|
||||||
|
|
||||||
void printDebugText() const;
|
void printDebugText() const;
|
||||||
|
|
Loading…
Reference in New Issue