Firstborn/Library/PackageCache/com.unity.collab-proxy@1.17.7/Editor/PlasticSCM/UI/ScreenResolution.cs
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05: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);
}
}
}