diff --git a/client/Assets/Scripts/Config/Table/Editor/PropItem/PropItemTableWindow.cs b/client/Assets/Scripts/Config/Table/Editor/PropItem/PropItemTableWindow.cs index 786a4eb..27d9ad5 100644 --- a/client/Assets/Scripts/Config/Table/Editor/PropItem/PropItemTableWindow.cs +++ b/client/Assets/Scripts/Config/Table/Editor/PropItem/PropItemTableWindow.cs @@ -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 propItemTableEditorPreviewList; + + public PropItemTableWindow() + { + propItemTableEditorPreviewList = new List(); + } + } + + public class PropItemTableEditorPreview { }