Ryujinx/Ryujinx.HLE/HOS/Applets/IApplet.cs

16 lines
329 B
C#
Raw Normal View History

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();
}
}