mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-11-27 09:30:51 +01:00
15 lines
291 B
C#
15 lines
291 B
C#
|
namespace Ryujinx.Loaders
|
||
|
{
|
||
|
struct ElfDyn
|
||
|
{
|
||
|
public ElfDynTag Tag { get; private set; }
|
||
|
|
||
|
public long Value { get; private set; }
|
||
|
|
||
|
public ElfDyn(ElfDynTag Tag, long Value)
|
||
|
{
|
||
|
this.Tag = Tag;
|
||
|
this.Value = Value;
|
||
|
}
|
||
|
}
|
||
|
}
|