mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
The network implementation originates from Berry's public TCP RyuLDN fork. Logo and unrelated changes have been removed. Additionally displays LDN game status in the game selection window when RyuLDN is enabled.
10 lines
217 B
C#
10 lines
217 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.UI.App.Common
|
|
{
|
|
public class LdnGameDataReceivedEventArgs : EventArgs
|
|
{
|
|
public IEnumerable<LdnGameData> LdnData { get; set; }
|
|
}
|
|
}
|