VR4RoboticArm3/VR4RoboticArm/Library/PackageCache/com.unity.collab-proxy/Editor/UI/ScreenResolution.cs
IonutMocanu 1d45ac8df0 Main1
2025-09-15 21:53:38 +03:00

14 lines
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);
}
}
}