ryujinx/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAppletFifo.cs
2023-04-27 23:51:14 +02:00

10 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;
}
}