Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elyeandre/simple-maze-game
This project is a Java-based maze game inspired by Nitrome's "Bad Ice Cream."
https://github.com/elyeandre/simple-maze-game
badicecream game game-development gamemadewithjava java java-game java-game-development javagame maze maze-game mazegame simple-game
Last synced: about 1 month ago
JSON representation
This project is a Java-based maze game inspired by Nitrome's "Bad Ice Cream."
- Host: GitHub
- URL: https://github.com/elyeandre/simple-maze-game
- Owner: elyeandre
- Created: 2023-09-05T13:31:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-16T11:25:33.000Z (about 1 year ago)
- Last Synced: 2024-10-15T00:28:55.774Z (3 months ago)
- Topics: badicecream, game, game-development, gamemadewithjava, java, java-game, java-game-development, javagame, maze, maze-game, mazegame, simple-game
- Language: Java
- Homepage:
- Size: 32.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## How to Run This Game
To run this game, follow these steps:
1. Ensure that you have Java installed on your system. To check whether Java is installed, use the following command:
```
java --version
```
2. Clone this repository by executing the following command:```
git clone https://github.com/elyeandre/simple-maze-game
```3. Inside the simple-maze-game folder, compile all the classes located in the src directory. This will place the compiled files into the bin folder:
```
cd simple-maze-game
```
```
javac -d bin src/**/*.java
```4. Inside of bin folder, execute the following command to create a JAR file named `mygame.jar`:
```
cd bin
```
```
jar cvfm mygame.jar MANIFEST.MF .
```5. You can now run the game using the following command:
```
java -jar mygame.jar
```
- Alternatively, you can use this single command to download and run the game directly:```
wget -qO- https://raw.githubusercontent.com/elyeandre/simple-maze-game/main/install_game.sh | bash
```