10 lines
177 B
C#
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);
|
|
}
|
|
}
|