mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-29 22:57:11 +02:00
10 lines
222 B
C#
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;
|
|
}
|
|
}
|