ryubing/Ryujinx.HLE/HOS/Services/DummyService.cs

12 lines
245 B
C#

namespace Ryujinx.HLE.HOS.Services
{
class DummyService : IpcService
{
public string ServiceName { get; set; }
public DummyService(string serviceName)
{
ServiceName = serviceName;
}
}
}