mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-17 14:00:12 +00:00
14 lines
231 B
C#
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; }
|
|
}
|
|
} |