IHostingServiceConfigurationProvider.cs 549 B

12345678910111213141516
  1. using System;
  2. using UnityEditor.AddressableAssets.Settings;
  3. namespace UnityEditor.AddressableAssets.HostingServices
  4. {
  5. /// <summary>
  6. /// Interface for providing configuration data for <see cref="IHostingService"/> implementations
  7. /// </summary>
  8. public interface IHostingServiceConfigurationProvider
  9. {
  10. /// <summary>
  11. /// Returns the Hosting Service content root path for the given <see cref="AddressableAssetGroup"/>
  12. /// </summary>
  13. string HostingServicesContentRoot { get; }
  14. }
  15. }