aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Es/IETicketService.cs
blob: f11c78ccaaf1130f4a4ca8a1c72e768261e61b86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using Ryujinx.HLE.HOS.Ipc;
using Ryujinx.HLE.HOS.Kernel;
using System.Collections.Generic;

namespace Ryujinx.HLE.HOS.Services.Es
{
    class IETicketService : IpcService
    {
        private Dictionary<int, ServiceProcessRequest> m_Commands;

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

        private bool IsInitialized;

        public IETicketService()
        {
            m_Commands = new Dictionary<int, ServiceProcessRequest>()
            {

            };
        }
    }
}