Files
BH3/Assets/Plugins/Assembly-CSharp-firstpass/UniWebViewHelper.cs
2025-08-13 09:26:42 +08:00

29 lines
272 B
C#

using UnityEngine;
public class UniWebViewHelper
{
public static int screenHeight
{
get
{
return Screen.height;
}
}
public static int screenWidth
{
get
{
return Screen.width;
}
}
public static int screenScale
{
get
{
return 1;
}
}
}