You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
314 B
11 lines
314 B
4 weeks ago
|
#pragma once
|
||
|
|
||
|
constexpr const int WINDOW_WIDTH=1920;
|
||
|
constexpr const int WINDOW_HEIGHT=1080;
|
||
|
constexpr const int FRAME_LIMIT=60;
|
||
|
constexpr const bool VSYNC=true;
|
||
|
constexpr const int TITLE_SIZE=124;
|
||
|
constexpr const int CONTENT_SIZE=94;
|
||
|
constexpr const int CONTROL_WIDTH=400;
|
||
|
constexpr const int CONTROL_HEIGHT=400;
|