namespace TBL.GodotSharp.Ui.Indexed { /// /// 的容器接口 /// /// 元素索引的类型 /// 元素的类型 public interface IIndexedDisplayContainer where T : IIndexedDisplayElement where TIndex : unmanaged { /// /// 刷新某个显示元素 /// /// 元素索引 /// 元素显示对象 void Refresh(TIndex index, T element); } }