mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-21 09:52:40 +00:00
11 lines
219 B
C#
11 lines
219 B
C#
using System;
|
|
using System.Collections.Concurrent;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE
|
|
{
|
|
interface IAppletFifo<T> : IProducerConsumerCollection<T>
|
|
{
|
|
event EventHandler DataAvailable;
|
|
}
|
|
}
|