RεKiT is a platform jumper game entirely written in Java with AWT. This project shall help to create addons for RεKiT.
Add RεKiT to your dependencies via Maven, Gradle or just download the zip and add to the Build-Path.
E.g. using Maven:
<repositories>
<repository>
<id>github</id>
<name>GitHub Apache Maven Packages</name>
<url>https://maven.pkg.github.com/rekit-group/rekit-game</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>rekit</groupId>
<artifactId>logic</artifactId>
<version>1.2.3-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
- Add your classes into any subpackage of
rekit
(this is necessary as only the subpackages ofrekit
will be traversed by the search routine). - Mark class for loading via
@LoadMe
(see API-Docs)
That's it. Just compile your library and add it to the mods
folder (Windows: %APPDATA%/rekit
, Unix/Mac: ~/.config/rekit
). Write a nice level and add it to the levels
folder (the filename has to start with "level") and enjoy the game.