SpaceGame is my very first Java-powered space adventure. Build, explore, and pilot your way through the stars in this simple yet fun prototype!
- Basic player-controlled spaceship movement.
- Enemy or obstacle spawning (if implemented).
- Score tracking and game over logic.
- Sound effects and asset support (
Asssetsfolder).
src/– Java source code (game logic, entities, main loop).bin/– Compiled.classfiles.Asssets/– Visuals, sound files, and other game resources..settings/,.classpath,.project– IDE project configuration (possibly Eclipse).
- Java JDK (version 8 or higher recommended).
- IDE of your choice (Eclipse, IntelliJ IDEA, NetBeans) or just a terminal.
- Clone the repo:
git clone https://github.com/Raziel206/SpaceGame.git cd SpaceGame - Compile:
javac -d bin src/**/*.java
- Run:
java -cp bin com.yourpackage.Main