namespace EGFramework { public interface IGenerateToolsInterface { public string GenerateCode(); } public interface IGodotTable { } public interface IGodotRowData { } public interface ITableData { /// /// Get the data of the table. /// /// string[][] GetTableData(); /// /// Get the header of the table. /// /// string[] GetTableHeader(); } public interface ITableRowData { string[] GetRowData(); } }