17 lines
517 B
C#
17 lines
517 B
C#
|
|
using System.IO;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace Unity.Services.Core.Configuration
|
||
|
|
{
|
||
|
|
static class ConfigurationUtils
|
||
|
|
{
|
||
|
|
public const string ConfigFileName = "UnityServicesProjectConfiguration.json";
|
||
|
|
|
||
|
|
public static string RuntimeConfigFullPath { get; }
|
||
|
|
= Path.Combine(Application.streamingAssetsPath, ConfigFileName);
|
||
|
|
|
||
|
|
public static IConfigurationLoader ConfigurationLoader { get; internal set; }
|
||
|
|
= new StreamingAssetsConfigurationLoader();
|
||
|
|
}
|
||
|
|
}
|