1.01
This commit is contained in:
25
Assets/05.TableTextConversion/RunTime/Base/UITableData.cs
Normal file
25
Assets/05.TableTextConversion/RunTime/Base/UITableData.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
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<MessageInfo> infos;
|
||||
|
||||
[Serializable]
|
||||
public class MessageInfo
|
||||
{
|
||||
// 序号
|
||||
[GUIColor(0, 1, 0)] public int index;
|
||||
// 名称
|
||||
public string name;
|
||||
// 名称描述
|
||||
public string nameMessage;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user