DISCLAIMER: NO RELEASES ARE PUBLISHED YET.
IF YOU WANT TO USE GAME2D ANYWAY, USE THE LATEST SNAPSHOT VERSION.
THIS DOCUMENT WILL BE UPDATED IF THEY ARE ANY REALISES AVAILABLE.- Vulcan based graphics engine (in progress)
- Chunk based processing (in progress)
- AABB collision (planed)
Replace the VERSION placeholder with the release or snapshot you want to use.
Maven
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.vonBohlen</groupId>
<artifactId>Game-2D</artifactId>
<version>VERSION</version>
</dependency>
Gradle
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.vonBohlen:Game-2D:VERSION'
}