// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Interactivity { public interface IInteractive : IVisual { void RaiseEvent(RoutedEventArgs e); } }