mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-15 16:17:42 +02:00
10 lines
228 B
C#
10 lines
228 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Ryujinx.Ava.Utilities.AppLibrary
|
|
{
|
|
public class LdnGameDataReceivedEventArgs : EventArgs
|
|
{
|
|
public IEnumerable<LdnGameData> LdnData { get; set; }
|
|
}
|
|
}
|