aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Services/Vi/Display.cs
blob: 0dbb2eda03df01ab4b8a3e67e1c7abdea2fa76ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Ryujinx.Core.OsHle.Services.Vi
{
    class Display
    {
        public string Name { get; private set; }

        public Display(string Name)
        {
            this.Name = Name;
        }
    }
}