mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-31 01:59:59 -06:00

These changes allow players to matchmake for local wireless using a LDN server. 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. Functionality is only enabled while network mode is set to "RyuLDN" in the settings.
17 lines
475 B
C#
17 lines
475 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.UI.App.Common
|
|
{
|
|
public struct LdnGameData
|
|
{
|
|
public string Id { get; set; }
|
|
public int PlayerCount { get; set; }
|
|
public int MaxPlayerCount { get; set; }
|
|
public string GameName { get; set; }
|
|
public string TitleId { get; set; }
|
|
public string Mode { get; set; }
|
|
public string Status { get; set; }
|
|
public IEnumerable<string> Players { get; set; }
|
|
}
|
|
}
|