Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 597 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 597 Bytes

worldengine-java

This library permits to open world generated using WorldEngine, an open-source World generator. Worlds have to be saved in protocol buffer format (option -b).

Using this library is very simple. Include the jar (it is not currently available on Maven) and load a World file like this:

WorldFile.World worldFile = WorldFileLoader.fromInputStream(is);

Maven

<dependency>
    <groupId>org.world-engine</groupId>
    <artifactId>worldengine-java</artifactId>
    <version>1.0</version>
</dependency>