MayHeCome/Assets/Exoa/Common/Packages/UIElements/Editor/UnityEngine.UIElements.Expansions/IAppendable.cs

12 lines
231 B
C#
Raw Normal View History

2024-12-18 09:55:34 +00:00
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);
}
}