Option Strict On
Option Explicit On

Namespace Nexamas.UI.Rendering

    ''' <summary>
    ''' Status for the final component-wide surface material coverage closure.
    ''' </summary>
    Friend Enum MASVisualSurfaceMaterialCoverageStatus
        Closed = 0
        BlockedByMissingComponentGateway = 1
        BlockedByLowLevelComponentRouteLeak = 2
        BlockedByIncompleteCentralRouteCoverage = 3
        BlockedByIncompleteComponentSurfaceCoverage = 4
        BlockedByInteractiveScopeLeak = 5
    End Enum

End Namespace
