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