Delete IApplicationAccessor.cs

This commit is contained in:
greggameplayer 2018-06-09 01:25:05 +02:00 committed by GitHub
parent a707ae8d90
commit eb8ad09275
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,20 +0,0 @@
using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.Services.Am
{
class IApplicationAccessor : IpcService
{
private Dictionary<int, ServiceProcessRequest> m_Commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
public IApplicationAccessor()
{
m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
//...
};
}
}
}