Files
XCharts/Runtime/Internal/Misc/IRectContext.cs
2022-02-19 22:37:57 +08:00

14 lines
239 B
C#

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