MayHeCome/Assets/Exoa/Common/Packages/UIElements/Editor/UnityEngine.UIElements.Expansions/IAppendable.cs
2024-12-18 17:55:34 +08:00

12 lines
231 B
C#

using System;
namespace UnityEngine.UIElements.Expansions
{
public interface IAppendable
{
void Append(string templateId, string name = null);
void Remove(string name = null);
void Clear();
void RemoveAt(int index);
}
}