An API for Nimelia's game
- Download the jar from the github actions
- Make a folder called
libsand put the jar in it. - Add those lines to your build manager.
Using maven:
<dependency>
<groupId>fr.nimelia</groupId>
<artifactId>gameapi</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/GameAPI.jar</systemPath>
</dependency>Using gradle:
implementation files('libs/GameAPI.jar')