mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-25 19:53:00 +00:00
13 lines
243 B
C#
13 lines
243 B
C#
namespace Ryujinx.HLE.HOS.Services
|
|
{
|
|
class DummyService : IpcService
|
|
{
|
|
public string ServiceName { get; set; }
|
|
|
|
public DummyService(string serviceName)
|
|
{
|
|
ServiceName = serviceName;
|
|
}
|
|
}
|
|
}
|