18 lines
445 B
C#
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; }
|
||
|
}
|
||
|
}
|