public void SetMatch(ParticipantInfo player, ParticipantInfo opponent)
 {
     Match = new MatchInfo(player, opponent);
 }
 public void Reset()
 {
     state = States.IDLE;
     Match = null;
 }