From adfc36ae6309dcc601133c487b7ef9e73ddf9f52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=A6=E8=AF=AD?= Date: Fri, 25 Oct 2024 17:59:28 +0800 Subject: [PATCH] =?UTF-8?q?=E9=81=93=E5=85=B7=E7=BC=96=E8=BE=91=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Table/Editor/PropItem/PropItemTableWindow.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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 { }