Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ConfigurationUtils.cs 403B

123456789101112
  1. using Unity.Services.Core.Internal.Serialization;
  2. namespace Unity.Services.Core.Configuration
  3. {
  4. static class ConfigurationUtils
  5. {
  6. public const string ConfigFileName = "UnityServicesProjectConfiguration.json";
  7. public static IConfigurationLoader ConfigurationLoader { get; internal set; }
  8. = new StreamingAssetsConfigurationLoader(new NewtonsoftSerializer());
  9. }
  10. }