aboutsummaryrefslogtreecommitdiff
path: root/V3/Widgets/IClickable.cs
blob: 276c4a1d0cf3cf924127bd2720508269f0d566bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using V3.Input;

namespace V3.Widgets
{
    /// <summary>
    /// An element that can be clicked on.
    /// </summary>
    public interface IClickable : IMouseEventHandler
    {
        bool IsClicked { get; set; }

        bool IsEnabled { get; set; }
    }
}