Package org.groovymud.object

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

Related Classes of org.groovymud.object.MudObject

Copyright © 2018 www.massapicom. 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.