aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IAppletFifo.cs
blob: 24f183d2305af08aeb2981184398a90b4fb14915 (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;
    }
}