engineer-thesis-WUT/breakout/constants.hpp

11 lines
262 B
C++
Raw Normal View History

// Copyright [2023] Krzysztof Rudnicki
#ifndef BREAKOUT_CONSTANTS_HPP_
#define BREAKOUT_CONSTANTS_HPP_
namespace constants {
constexpr int MAX_KEYS_TRACKED { 1024 };
constexpr int GAME_WINDOW_SIZE_ALLIGNMENT { 8 };
}
#endif // BREAKOUT_CONSTANTS_HPP_