Exemplo n.º 1
0
 /// <summary>
 /// Get value by the statistics type.
 /// </summary>
 /// <param name="zombieRoundStatisticsType">Type of statistics to get.</param>
 /// <returns>A statistics value.</returns>
 public static dynamic GetStatistics(ZombieRoundStatisticsType zombieRoundStatisticsType)
 {
     switch (zombieRoundStatisticsType)
     {
     case ZombieRoundStatisticsType.ZombieRoundsSurvived:
         return(zombieRoundsSurvived);
     }
     return(new object());
 }
Exemplo n.º 2
0
 /// <summary>
 /// Save value to the zombie round statistics.
 /// </summary>
 /// <param name="zombieRoundStatisticsType">Type of statistics to save.</param>
 /// <param name="value">Value to save.</param>
 public static void SaveStatistics(ZombieRoundStatisticsType zombieRoundStatisticsType, dynamic value)
 {
     switch (zombieRoundStatisticsType)
     {
     case ZombieRoundStatisticsType.ZombieRoundsSurvived:
         zombieRoundsSurvived = (int)(object)value;
         break;
     }
 }