15 lines
381 B
C#
15 lines
381 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
using UnityEngine.EventSystems;
|
|
|
|
namespace Microsoft.MixedReality.Toolkit
|
|
{
|
|
/// <summary>
|
|
/// Interface to implement generic events.
|
|
/// </summary>
|
|
public interface IMixedRealityEventHandler : IEventSystemHandler
|
|
{
|
|
void OnEventRaised(GenericBaseEventData eventData);
|
|
}
|
|
} |