https://github.com/nymann/introlab
Introduction to a Monolithic Asteroids Game
https://github.com/nymann/introlab
Last synced: about 1 year ago
JSON representation
Introduction to a Monolithic Asteroids Game
- Host: GitHub
- URL: https://github.com/nymann/introlab
- Owner: nymann
- Created: 2022-05-11T22:10:37.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-05-12T16:17:40.000Z (about 4 years ago)
- Last Synced: 2025-03-28T21:06:49.110Z (about 1 year ago)
- Language: Java
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IntroLab

### Running the game
##### Via make target
```sh
make run
```
##### Via maven
```sh
mvn package -f AsteroidsLibGDX/pom.xml
java -jar bin/AsteroidsLibGDX-1.0-SNAPSHOT.jar
```
### Implemented features
- Added Enemy ship that moves randomly and shoots bullets
- Bullets will automatically be removed when outside the screen area.
- Naive weapon cooldown: (you can only shoot if there's less than X bullets on screen)
- Colored enemy ship, player ship and bullets.