using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.FSE.Common.Resolution
{
///
/// Represents modes of window size resolutions
///
public enum ResolutionMode
{
///
/// TODO: Why do I need this ?
///
None,
///
/// High resolution (usually should be 1600 in width and above )
///
High,
///
/// Low resolution (usually should be less than 1600 in width)
///
Low
}
}