16 lines
318 B
C#
16 lines
318 B
C#
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; }
|
|
public List<UIEntity> infos;
|
|
}
|
|
}
|
|
|