Option Strict On
Option Explicit On

Namespace Nexamas.UI.Rendering

    ''' <summary>
    ''' Declares where a component region gets its material. InheritApplication keeps the
    ''' region participating in the application/global material route. AuthoredMaterial is a
    ''' Friend-only component-author decision and stays official because it still resolves via
    ''' the Surface Material registry and gateway.
    ''' </summary>
    Friend Enum MASComponentSurfaceMaterialSourceKind
        InheritApplication = 0
        AuthoredMaterial = 1
    End Enum

End Namespace
