A game about forced loneliness, made by TACStudios
1using System; 2 3namespace Unity.VisualScripting 4{ 5 public interface IGraphNest : IAotStubbable 6 { 7 IGraphNester nester { get; set; } 8 9 GraphSource source { get; set; } 10 IGraph embed { get; set; } 11 IMacro macro { get; set; } 12 IGraph graph { get; } 13 14 Type graphType { get; } 15 Type macroType { get; } 16 17 bool hasBackgroundEmbed { get; } 18 } 19}