-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
29 lines (18 loc) · 1.24 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# SpaceInvaders
This is a simple arcade game called Space Invaders! In the game, a swarm of aliens moves back-and-forth across
screen, moving down once the swarm has reached the end of the screen. The player, at the bottom, moves back-andforth, shooting the aliens.
The game is won if the player successfully shoots all the aliens. The game is lost if the aliens reach the bottom.
To learn more about the game and its rules visit:
https://en.wikipedia.org/wiki/Space_Invaders
________________________________________________________________________________________________________________________
COMPLETE THE FOLLOWING STEPS TO RUN THE GAME USING YOUR CONSOLE
________________________________________________________________________________________________________________________
1.COMPILING THE FILE
The main class is Display.java COMPILE it using the following command in the command line
javac Display.java
________________________________________________________________________________________________________________________
2. RUNNING THE FILE
RUN the program using the following command
java Display
________________________________________________________________________________________________________________________
Enjoy!