A polished C++ implementation of the classic Arkanoid arcade game, built with Allegro 5 for graphics, audio, and input handling. The player controls a paddle to deflect a ball into a 10x5 grid of destructible tiles, each with an HP system requiring up to 3 hits to destroy. The game features a full scoring system, a lives mechanic starting at 3 lives, and three distinct power-ups that add strategic depth to the gameplay.
Requirements: CMake (3.2+), Allegro 5
git clone https://github.com/ArturKos/arkanoid.git cd arkanoid mkdir build && cd build cmake .. make
Check out the project on GitHub: Arkanoid Game on GitHub
Back to Portfolio