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