ryubing/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAppletFifo.cs

11 lines
222 B
C#

using System;
using System.Collections.Concurrent;
namespace Ryujinx.HLE.HOS.Services.Am.AppletAE
{
interface IAppletFifo<T> : IProducerConsumerCollection<T>
{
event EventHandler DataAvailable;
}
}