public AstCharactor GetCharacter(AstCharType type)
        {
            int i = Array.IndexOf(Enum.GetValues(type.GetType()), type);

            return(charactors[i]);
        }
Ejemplo n.º 2
0
 public AstCharactor(AstClient client, AstCharType type)
 {
     this.client = client;
     this.type   = type;
     InitializeExpTable();
 }