mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-09-11 12:26:27 -05:00
9 lines
174 B
C#
9 lines
174 B
C#
namespace ARMeilleure.IntermediateRepresentation
|
|
{
|
|
interface IIntrusiveListNode<T>
|
|
{
|
|
T ListPrevious { get; set; }
|
|
T ListNext { get; set; }
|
|
}
|
|
}
|