You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
650 B
34 lines
650 B
namespace EGFramework |
|
{ |
|
public interface IGenerateToolsInterface |
|
{ |
|
public string GenerateCode<T>(); |
|
} |
|
public interface IGodotTable |
|
{ |
|
|
|
} |
|
public interface IGodotRowData |
|
{ |
|
|
|
} |
|
|
|
public interface ITableData |
|
{ |
|
/// <summary> |
|
/// Get the data of the table. |
|
/// </summary> |
|
/// <returns></returns> |
|
string[][] GetTableData(); |
|
/// <summary> |
|
/// Get the header of the table. |
|
/// </summary> |
|
/// <returns></returns> |
|
string[] GetTableHeader(); |
|
} |
|
|
|
public interface ITableRowData |
|
{ |
|
string[] GetRowData(); |
|
} |
|
} |