namespace Unity.Services.Core.Editor { /// /// Interface used to identify services /// public interface IEditorGameServiceIdentifier { /// /// The key used to identify a service. /// Used when registering/fetching a service to/from the /// /// The key for the service string GetKey(); } }