Files
FlaxEngine/Source/Editor/Surface/ISurfaceNodeElement.cs
2024-02-26 19:00:48 +01:00

24 lines
567 B
C#

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