engineer-thesis-WUT/breakout/constants.hpp

12 lines
311 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 };
2023-07-11 19:20:19 +02:00
constexpr int DEFAULT_INVALID_NUMBER { -1 };
}
#endif // BREAKOUT_CONSTANTS_HPP_