LMQT/Assets/TouchScript/Scripts/IGestureManager.cs
2024-12-10 09:03:45 +08:00

18 lines
445 B
C#

/*
* @author Valentin Simonov / http://va.lent.in/
*/
namespace TouchScript
{
/// <summary>
/// Core manager which controls gesture recognition in hierarchy.
/// </summary>
public interface IGestureManager
{
/// <summary>
/// Gets or sets the global gesture delegate.
/// </summary>
/// <value> Gesture delegate. </value>
IGestureDelegate GlobalGestureDelegate { get; set; }
}
}