Files

16 lines
318 B
C#
Raw Permalink Normal View History

2025-04-01 18:26:48 +08:00
using System;
using System.Collections;
using System.Collections.Generic;
using Sirenix.OdinInspector;
using UnityEngine;
namespace Stary.Evo.TableTextConversion
{
public class UITableData : ScriptableObject, ITableData
{
public string TableName { get; }
2025-11-12 14:22:04 +08:00
public List<UIEntity> infos;
2025-04-01 18:26:48 +08:00
}
2025-04-21 15:46:47 +08:00
}