22 lines
545 B
C#
22 lines
545 B
C#
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
|
|
{
|
|
|
|
}
|
|
} |