mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-09 14:20:36 +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; }
|
|
}
|
|
}
|