mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-04-05 04:59:42 +00:00
8 lines
171 B
C#
8 lines
171 B
C#
namespace ARMeilleure.IntermediateRepresentation
|
|
{
|
|
interface IIntrusiveListNode<T>
|
|
{
|
|
T ListPrevious { get; set; }
|
|
T ListNext { get; set; }
|
|
}
|
|
}
|