Skip to content
This repository has been archived by the owner on Oct 26, 2021. It is now read-only.

Rε​KiT is a platform jumper game entirely written in Java - Here's a sample mod / addon for it.

License

Notifications You must be signed in to change notification settings

rekit-group/rekit-sample-mod

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rε​KiT-Sample-Mod

GitHub license

Rε​KiT is a platform jumper game entirely written in Java with AWT. This project shall help to create addons for RεKiT.

Steps to create your own mod

Step 1:

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>

Step 2:

  • Add your classes into any subpackage of rekit (this is necessary as only the subpackages of rekit will be traversed by the search routine).
  • Mark class for loading via @LoadMe (see API-Docs)

Step 3:

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.

About

Rε​KiT is a platform jumper game entirely written in Java - Here's a sample mod / addon for it.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages