Files
XCharts/Runtime/Internal/Misc/IRectContext.cs
2022-01-05 21:40:48 +08:00

14 lines
231 B
C#

using UnityEngine;
namespace XCharts
{
public interface IRectContext
{
float x { get; }
float y { get; }
float width { get; }
float height { get; }
Vector3 position { get; }
}
}