Files
2026-02-21 16:45:37 +08:00

24 lines
327 B
C#

using UnityEngine;
namespace UIWidgets
{
public interface ILayoutBridge
{
bool IsHorizontal { get; set; }
bool UpdateContentSizeFitter { get; set; }
void UpdateLayout();
void SetFiller(float first, float last);
Vector2 GetItemSize();
float GetMargin();
float GetFullMargin();
float GetSpacing();
}
}