An open API service indexing awesome lists of open source software.

https://github.com/appleboiy/java2dcavas

Game engine for 2D game build with Java
https://github.com/appleboiy/java2dcavas

Last synced: 3 months ago
JSON representation

Game engine for 2D game build with Java

Awesome Lists containing this project

README

        

# Java 2D Game Engine

> [!NOTE]
>
> I. FOR PROJECT STRUCTURE, SEE [DIRECTORY.txt](DIRECTORY.txt)
>
> II. FOR PROJECT PLAN, SEE [TODO.md](TODO.md)

## Usage

### Run the Application
To run the project:

```shell
gradle run
```

### Create a JAR File
To create a JAR file of your project:

```shell
gradle jar
```

The generated JAR file will be located in the `build/libs` directory.

### Running the JAR
After creating the JAR file, you can run it with the following command:

```shell
java -jar build/libs/.jar
```