mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2026-01-06 17:44:49 +00:00
12 lines
245 B
C#
12 lines
245 B
C#
namespace Ryujinx.HLE.HOS.Services
|
|
{
|
|
class DummyService : IpcService
|
|
{
|
|
public string ServiceName { get; set; }
|
|
|
|
public DummyService(string serviceName)
|
|
{
|
|
ServiceName = serviceName;
|
|
}
|
|
}
|
|
} |