public static string GetObjectName(EnMoveChoise moveChoice) { switch (moveChoice) { case EnMoveChoise.Paper: return("Paper"); case EnMoveChoise.Rock: return("Rock"); case EnMoveChoise.Scissors: return("Scissors"); default: return("Unknown!"); } }
public void AssigmentHumanMove(EnMoveChoise humanMove) { }
public void AssigmentHumanMove(EnMoveChoise humanMove) { currentChoice = humanMove; }