mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 11:43:05 +02:00
12 lines
311 B
C++
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_
|