您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
463 B

namespace Unity.Services.Core.Editor
{
/// <summary>
/// Interface used to identify services
/// </summary>
public interface IEditorGameServiceIdentifier
{
/// <summary>
/// The key used to identify a service.
/// Used when registering/fetching a service to/from the <see cref="IEditorGameServiceRegistry"/>
/// </summary>
/// <returns>The key for the service</returns>
string GetKey();
}
}