aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/LibraryAppletProxy/AppletStandalone.cs
blob: 69967c568290f53b94797108839f3d2035040aad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Collections.Generic;

namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.LibraryAppletProxy
{
    class AppletStandalone
    {
        public AppletId          AppletId;
        public LibraryAppletMode LibraryAppletMode;
        public Queue<byte[]>     InputData;

        public AppletStandalone()
        {
            InputData = new Queue<byte[]>();
        }
    }
}