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.
10 lines
316 B
10 lines
316 B
#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=1000;
|
|
constexpr const int CONTROL_HEIGHT=1000;
|
|
|