aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/OsHle/Services/Caps/IAlbumAccessorService.cs
blob: d92f3e53ca7e1e9a422c846af555d576f3cf1a5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic;

namespace Ryujinx.Core.OsHle.Services.Caps
{
    class IAlbumAccessorService : IpcService
    {
        private Dictionary<int, ServiceProcessRequest> m_Commands;

        public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;

        public IAlbumAccessorService()
        {
            m_Commands = new Dictionary<int, ServiceProcessRequest>()
            {
                //...
            };
        }
    }
}