Option Strict On
Option Explicit On

Namespace Nexamas.UI.Rendering

    ''' <summary>
    ''' Visual state supplied to surface materials. It is intentionally component-neutral.
    ''' </summary>
    Friend Enum MASSurfaceVisualState
        Normal = 0
        Hovered = 1
        Pressed = 2
        Focused = 3
        Disabled = 4
    End Enum

End Namespace
