engineer-thesis-WUT/breakout/constants.hpp

12 lines
311 B
C++

// 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 };
constexpr int DEFAULT_INVALID_NUMBER { -1 };
}
#endif // BREAKOUT_CONSTANTS_HPP_