WuhuIslandTesting/Library/PackageCache/com.unity.collab-proxy@1.17.7/Editor/PlasticSCM/UI/ScreenResolution.cs
2025-01-07 02:06:59 +01:00

14 lines
No EOL
314 B
C#

using UnityEngine;
namespace Unity.PlasticSCM.Editor.UI
{
internal static class ScreenResolution
{
internal static string Get()
{
return string.Format("{0}x{1}",
Screen.currentResolution.width,
Screen.currentResolution.height);
}
}
}