engineer-thesis-WUT/Engine/engine/constants.hpp
2022-08-29 21:01:55 +02:00

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