using System.Collections; using System.Collections.Generic; using Cysharp.Threading.Tasks; using UnityEngine; public interface ITableData { string TableName { get; } bool IsLoad { get; set; } UniTask LoadData(); }