Aimbot-ParallelEnv/Assets/XCharts/Runtime/Coord/Grid/GridCoordContext.cs
Koha9 6bc1456e4b Fist Sub
based on aimbot multi seane
2022-10-26 04:07:39 +09:00

21 lines
538 B
C#

using System.Collections.Generic;
using UnityEngine;
namespace XCharts.Runtime
{
public class GridCoordContext : MainComponentContext
{
public float x;
public float y;
public float width;
public float height;
public Vector3 position;
public Vector3 center;
public float left;
public float right;
public float bottom;
public float top;
public bool isPointerEnter;
public List<ChartLabel> endLabelList = new List<ChartLabel>();
}
}