11 lines
226 B
C#
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();
|
|
} |