Exemple #1
0
 public static void Register()
 {
     GeneralProviders.Register();
     foreach (TrainCarType carType in Enum.GetValues(typeof(TrainCarType)))
     {
         if (CarTypes.IsLocomotive(carType))
         {
             LocoProviders.Register(carType);
         }
     }
 }
Exemple #2
0
 public static void Register()
 {
     GeneralProviders.Register();
     LocoProviders.Register();
 }