using System.Collections.Generic; namespace Unity.VisualScripting { public interface IGraphWithVariables : IGraph { VariableDeclarations variables { get; } IEnumerable GetDynamicVariableNames(VariableKind kind, GraphReference reference); } }