diff options
Diffstat (limited to 'src/games/breakout/Breakout.hpp')
| -rw-r--r-- | src/games/breakout/Breakout.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/games/breakout/Breakout.hpp b/src/games/breakout/Breakout.hpp index 2b7c9b3..60cd648 100644 --- a/src/games/breakout/Breakout.hpp +++ b/src/games/breakout/Breakout.hpp @@ -22,8 +22,10 @@ class Breakout : public Game { static constexpr uint32_t BRICK_ROWS = 8; static constexpr uint32_t BRICK_COLS = 14; - static constexpr float PADDLE_HEIGHT = 0.1f; + static constexpr float BALL_SPEED = 2.0f; + static constexpr float PADDLE_WIDTH = 0.6f; + static constexpr float PADDLE_HEIGHT = 0.1f; static constexpr float PADDLE_SPEED = 1.0f; |
