A game about forced loneliness, made by TACStudios
1using System.Collections.Generic; 2 3namespace Unity.VisualScripting 4{ 5 public interface IGraphWithVariables : IGraph 6 { 7 VariableDeclarations variables { get; } 8 9 IEnumerable<string> GetDynamicVariableNames(VariableKind kind, GraphReference reference); 10 } 11}