aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAppletFifo.cs
blob: ca79bac7af37c5802abf2fe710e7baf43d7ffcdb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System;
using System.Collections.Concurrent;

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