Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ValidatorTuple"/> struct.
 /// </summary>
 /// <param name="character">Character to validate</param>
 /// <param name="characterType">Issue type of the character</param>
 public ValidatorTuple(int character, CaracterType characterType)
 {
     this.character     = character;
     this.characterType = characterType;
 }
Ejemplo n.º 2
0
 public void Initialize(UserInfos infos)
 {
     this.character = infos.Type;
     this.infos = infos;
     UpdateVisual();
 }