mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 18:03:03 +02:00
14 lines
370 B
C++
14 lines
370 B
C++
#ifndef CONSTANTS_HPP
|
|
#include <iostream>
|
|
#include <string_view>
|
|
|
|
namespace constants
|
|
{
|
|
// best practice is to use inline constexpr std::string_view but glfwCreateWindow takes only char* as input
|
|
inline const char* MAIN_WINDOW_NAME { "Match" };
|
|
inline constexpr int MAIN_WINDOW_WIDTH { 800 };
|
|
inline constexpr int MAIN_WINDOW_HEIGHT { 600 };
|
|
|
|
}
|
|
|
|
#endif |