// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Collections; namespace Microsoft.MixedReality.Toolkit { /// /// Interface to implement an event source. /// public interface IMixedRealityEventSource : IEqualityComparer { /// /// The unique source id of this event source. /// uint SourceId { get; } /// /// The name of this event source. /// string SourceName { get; } } }