2019-07-12 03:13:43 +02:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services
|
2019-04-16 01:22:55 +02:00
|
|
|
|
{
|
|
|
|
|
class DummyService : IpcService
|
|
|
|
|
{
|
|
|
|
|
public string ServiceName { get; set; }
|
|
|
|
|
|
|
|
|
|
public DummyService(string serviceName)
|
|
|
|
|
{
|
|
|
|
|
ServiceName = serviceName;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-07-12 03:13:43 +02:00
|
|
|
|
}
|