MayHeCome/Assets/Exoa/Common/Packages/UIElements/Editor/Utils/RectExtenseions.cs

10 lines
177 B
C#
Raw Normal View History

2024-12-18 09:55:34 +00:00
using System;
using UnityEngine;
namespace Exoa.Utils
{
public static class RectExtensions
{
public static readonly Rect One = new Rect(0f, 0f, 1f, 1f);
}
}