Examples of MudObject


Examples of org.groovymud.object.MudObject

  public void informMudOfShutdown() {
    String timeLeft = calculateTimeLeft();
    if (informer != null) {
      String message = "";
      if (informer instanceof MudObject) {
        MudObject obj = (MudObject) informer;
        message += obj.getName() + " shouts:";
      }
      message += "Mud shutting down in " + timeLeft;
      MessengerUtils.sendMessageToMud(informer, "", message);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.