Skip to content

Mindwerks/worldengine-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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>