mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
12 lines
243 B
C#
12 lines
243 B
C#
namespace Ryujinx.HLE.HOS.Services
|
|
{
|
|
class DummyService : IpcService
|
|
{
|
|
public string ServiceName { get; set; }
|
|
|
|
public DummyService(string serviceName)
|
|
{
|
|
ServiceName = serviceName;
|
|
}
|
|
}
|
|
}
|