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