Package iryrwarosh

Examples of iryrwarosh.Message


    terminal.writeCenter("Message Log", 0);
    for (int i = 0; i < 22; i++){
      if (scroll + i >= messages.size())
        break;
     
      Message m = messages.get(scroll + i);
      Color color = (GainedFame.class.isAssignableFrom(m.getClass())) ? AsciiPanel.brightYellow : Common.guiForeground;
     
      if (SaidOutLoud.class.isAssignableFrom(m.getClass()))
        color = ((SaidOutLoud)m).creature.color();
     
      terminal.write(clean(m.text()), 1, i+2, color, null);
    }
  }
View Full Code Here

TOP

Related Classes of iryrwarosh.Message

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.