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
- Host: GitHub
- URL: https://github.com/appleboiy/java2dcavas
- Owner: AppleBoiy
- License: mit
- Created: 2025-01-28T14:19:05.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-01-29T05:44:26.000Z (4 months ago)
- Last Synced: 2025-02-19T10:43:34.758Z (4 months ago)
- Language: Java
- Homepage:
- Size: 55.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```