blob: f1972f6386b30a0a3334ff7ae8dd458aafed104d (
plain)
1
2
3
4
5
6
7
8
|
namespace Ryujinx.HLE.HOS.Services.Account.Acc
{
[Service("acc:u1")]
class IAccountServiceForSystemService : IpcService
{
public IAccountServiceForSystemService(ServiceCtx context) { }
}
}
|