// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; namespace FlaxEditor.Surface { /// /// Base interface for elements that can be added to the . /// [HideInEditor] public interface ISurfaceNodeElement { /// /// Gets the parent node. /// SurfaceNode ParentNode { get; } /// /// Gets the element archetype. /// NodeElementArchetype Archetype { get; } } }