Files
XCharts/Runtime/Coord/Grid/GridLayoutContext.cs

12 lines
269 B
C#
Raw Normal View History

2023-08-29 18:30:11 +08:00
namespace XCharts.Runtime
{
public class GridLayoutContext : MainComponentContext
{
public float x;
public float y;
public float width;
public float height;
public float eachWidth;
public float eachHeight;
}
}