You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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