blob: c2d4aada1f564958fcb1e9a703b38813051430e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using Ryujinx.HLE.HOS.Services.Am.AppletAE;
using System;
namespace Ryujinx.HLE.HOS.Applets
{
interface IApplet
{
event EventHandler AppletStateChanged;
ResultCode Start(AppletSession normalSession,
AppletSession interactiveSession);
ResultCode GetResult();
}
}
|