Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cjstehno/starhunter
Simple alien-blasting game used to learn 2D game development.
https://github.com/cjstehno/starhunter
Last synced: about 4 hours ago
JSON representation
Simple alien-blasting game used to learn 2D game development.
- Host: GitHub
- URL: https://github.com/cjstehno/starhunter
- Owner: cjstehno
- License: apache-2.0
- Created: 2014-02-16T12:48:52.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-11-22T14:01:06.000Z (almost 9 years ago)
- Last Synced: 2023-03-11T10:41:48.374Z (over 1 year ago)
- Language: Groovy
- Size: 14.6 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Star Hunter
Simple alien-blasting game used to learn 2D game development.
See the [GitHub project](https://github.com/cjstehno/starhunter) or [wiki](https://github.com/cjstehno/starhunter/wiki) for more information.
## Building
You can build the project using the Gradle wrapper. Simply down load the source and run:
```gradlew build unpackNatives -x test```
Once the project has been built once (and native unpacked) you can run the tests as normal:
```gradlew test```
## Installer
You can build the installer using:
```gradlew installApp izPackCreateInstaller```
which will create an `-installer` distribution which can be distributed and run as a standalone installer (currently works for Windows only).
## Running
To run the built project (and start the game):
```gradlew run```
or if using an installed distribution, you can run the `bin/starhunter.bat` file to start the game.
> Note: this is not a production ready game, nor will it ever be - it's for educational purposes only.