Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/EnergyBarToolkit/Screen2.cs
2026-02-21 16:45:37 +08:00

24 lines
234 B
C#

using UnityEngine;
namespace EnergyBarToolkit
{
public class Screen2
{
public static int width
{
get
{
return Screen.width;
}
}
public static int height
{
get
{
return Screen.height;
}
}
}
}