From eb8ad0927542752efa1c293c78aca98f0436f00e Mon Sep 17 00:00:00 2001 From: greggameplayer <33609333+greggameplayer@users.noreply.github.com> Date: Sat, 9 Jun 2018 01:25:05 +0200 Subject: [PATCH] Delete IApplicationAccessor.cs --- .../OsHle/Services/Am/IApplicationAccessor.cs | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 Ryujinx.Core/OsHle/Services/Am/IApplicationAccessor.cs diff --git a/Ryujinx.Core/OsHle/Services/Am/IApplicationAccessor.cs b/Ryujinx.Core/OsHle/Services/Am/IApplicationAccessor.cs deleted file mode 100644 index d701f9a123..0000000000 --- a/Ryujinx.Core/OsHle/Services/Am/IApplicationAccessor.cs +++ /dev/null @@ -1,20 +0,0 @@ -using Ryujinx.Core.OsHle.Ipc; -using System.Collections.Generic; - -namespace Ryujinx.Core.OsHle.Services.Am -{ - class IApplicationAccessor : IpcService - { - private Dictionary m_Commands; - - public override IReadOnlyDictionary Commands => m_Commands; - - public IApplicationAccessor() - { - m_Commands = new Dictionary() - { - //... - }; - } - } -}