IApplet.cs 329 B

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