1namespace Unity.VisualScripting 2{ 3 public interface IGraphElementWithData : IGraphElement 4 { 5 IGraphElementData CreateData(); 6 } 7}