mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-26 15:39:01 +02: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;
|
|
}
|
|
}
|
|
} |