Firstborn/Library/PackageCache/com.unity.addressables@1.19.19/Editor/HostingServices/IHostingServiceConfiguratio...

17 lines
533 B
C#
Raw Normal View History

using System;
using UnityEditor.AddressableAssets.Settings;
namespace UnityEditor.AddressableAssets.HostingServices
{
/// <summary>
/// Interface for providing configuration data for <see cref="IHostingService"/> implementations
/// </summary>
public interface IHostingServiceConfigurationProvider
{
/// <summary>
/// Returns the Hosting Service content root path for the given <see cref="AddressableAssetGroup"/>
/// </summary>
string HostingServicesContentRoot { get; }
}
}