Ryujinx/Ryujinx.HLE/HOS/Services/Sockets/Bsd/Types/PollEvent.cs

14 lines
349 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.Sockets.Bsd.Types
{
class PollEvent
{
public PollEventData Data;
public IFileDescriptor FileDescriptor { get; }
public PollEvent(PollEventData data, IFileDescriptor fileDescriptor)
{
Data = data;
FileDescriptor = fileDescriptor;
}
}
}