com.nkasenides.athlos.model.IWorld Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of athlos-core Show documentation
Show all versions of athlos-core Show documentation
An MMOG development framework.
package com.nkasenides.athlos.model;
import java.util.List;
public interface IWorld {
String getId();
String getName();
long getSeed();
long getCreatedOn();
List getChunkIDs();
int getHeightLimit();
long getMaxRows();
long getMaxCols();
String getOwnerID();
List getSubscribedSessionIDs();
}