aboutsummaryrefslogtreecommitdiff
path: root/V3/Input/IMouseEventHandler.cs
blob: 7c8701c452fe49732ddfde9a34105ce407148e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace V3.Input
{
    /// <summary>
    /// Handles mouse events.
    /// </summary>
    public interface IMouseEventHandler
    {
        /// <summary>
        /// Handle the given mouse event, if applicable.
        /// </summary>
        /// <param name="mouseEvent">the mouse event to handle</param>
        void HandleMouseEvent(IMouseEvent mouseEvent);
    }
}