mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-03-11 17:11:06 +00:00
9 lines
171 B
C#
9 lines
171 B
C#
namespace ARMeilleure.IntermediateRepresentation
|
|
{
|
|
interface IIntrusiveListNode<T>
|
|
{
|
|
T ListPrevious { get; set; }
|
|
T ListNext { get; set; }
|
|
}
|
|
}
|