View Javadoc

1   package cz.cuni.amis.pogamut.unreal.communication.messages.gbinfomessages;
2   
3   import cz.cuni.amis.pogamut.unreal.communication.messages.UnrealId;
4   
5   /**
6   
7   Info batch message. Starts with SMUT message, ends with EMUT
8   message. Hold information about current mutators active
9   on the server.
10  Corresponding GameBots message is  MUT.
11   */
12  public interface IMutator {
13  
14      public UnrealId getId();
15  
16      /**
17  
18      Name of the mutator.
19  
20       */
21      public String getName();
22  
23      public String toHtmlString();
24  }