Question: Create a working version of an Arkanoid game. (Win32 program) Steps: Create single horizontal paddle and a ball, and walls. Make the ball move and
Create a working version of an Arkanoid game. (Win32 program)
Steps:
Create single horizontal paddle and a ball, and walls. Make the ball move and bounce from all walls and the padde. Ball should start of in a random direction (srand(time(0)) initializes pseudo-random value generator and rand() % 10 function returns random value between 0 and 10).
Make paddles horizontal movement controlled by a players mouse.
Make a wall of bricks of different colors (use a thick line).
Bricks should be destroyed, when hit by the ball. They should also bounce the ball.
When the ball hits the bottom wall (it was not caught by the players paddle), the game restarts and you can continue playing it.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
