13 lines
221 B
C#
13 lines
221 B
C#
|
|
|
|
using Cysharp.Threading.Tasks;
|
|
|
|
namespace Stary.Evo.TableTextConversion
|
|
{
|
|
public interface ITableDataCore
|
|
{
|
|
string TableName { get; }
|
|
bool IsLoad { get; set; }
|
|
UniTask LoadData();
|
|
}
|
|
} |