Ejemplo n.º 1
0
 private void resolveRound() {
     switch (currGovt) {
         case GOVT.Chancellor:
             currGovt = GOVT.PrevChancellor;
             break;
         case GOVT.President:
             currGovt = GOVT.PrevPresident;
             break;
         default:
             currGovt = GOVT.Spectator;
             break;
     }
     Console.WriteLine("Round end. My role: " + currGovt.ToString());
 }