Option Strict On
Option Explicit On

Namespace Nexamas.UI.Rendering

    ''' <summary>
    ''' Status for the component shadow-ownership adoption pass.
    ''' </summary>
    Friend Enum MASVisualComponentShadowOwnershipStatus
        Closed = 0
        BlockedByLocalBlurredShadow = 1
        BlockedByLocalFlatShadow = 2
        BlockedByMissingShadowSystemGateway = 3
    End Enum

End Namespace
