Files
plugin-library/Assets/05.TableTextConversion/RunTime/Core/ITableData.cs
2025-09-04 11:43:35 +08:00

11 lines
226 B
C#

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();
}