mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 15:43:19 +02:00
11 lines
262 B
C++
11 lines
262 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 };
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif // BREAKOUT_CONSTANTS_HPP_
|