org.vrspace.server.dto.Command Maven / Gradle / Ivy
package org.vrspace.server.dto;
import org.vrspace.server.core.WorldManager;
import org.vrspace.server.obj.Client;
/**
* A command issued by a client.
*
* @author joe
*
*/
public interface Command {
ClientResponse execute(WorldManager worldManager, Client client) throws Exception;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy