mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-20 17:51:13 +02:00
12 lines
210 B
C#
12 lines
210 B
C#
namespace Ryujinx.Core.OsHle.Services.Vi
|
|
{
|
|
class Display
|
|
{
|
|
public string Name { get; private set; }
|
|
|
|
public Display(string Name)
|
|
{
|
|
this.Name = Name;
|
|
}
|
|
}
|
|
} |