MayHeCome/Assets/Exoa/Common/Packages/UIElements/Editor/Utils/RectExtenseions.cs
2024-12-18 17:55:34 +08:00

10 lines
177 B
C#

using System;
using UnityEngine;
namespace Exoa.Utils
{
public static class RectExtensions
{
public static readonly Rect One = new Rect(0f, 0f, 1f, 1f);
}
}