com.nkasenides.athlos.model.IWorldSession 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;
public interface IWorldSession {
String getId();
String getPlayerID();
String getIpAddress();
long getCreatedOn();
long getExpiresOn();
String getWorldID();
}