道具编辑器

This commit is contained in:
梦语 2024-10-25 17:59:28 +08:00
parent d831924d6e
commit adfc36ae63

View File

@ -1,6 +1,21 @@
using System.Collections.Generic;
using Sirenix.OdinInspector;
namespace Ether
{
public class PropItemTableWindow
{
[LabelText("道具列表")]
[TableList(IsReadOnly = true, AlwaysExpanded = true), ShowInInspector]
public readonly List<PropItemTableEditorPreview> propItemTableEditorPreviewList;
public PropItemTableWindow()
{
propItemTableEditorPreviewList = new List<PropItemTableEditorPreview>();
}
}
public class PropItemTableEditorPreview
{
}