mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-30 20:12:01 +00:00
15 lines
No EOL
315 B
C#
15 lines
No EOL
315 B
C#
namespace Ryujinx.HLE.Loaders.Elf
|
|
{
|
|
struct ElfDynamic
|
|
{
|
|
public ElfDynamicTag Tag { get; private set; }
|
|
|
|
public long Value { get; private set; }
|
|
|
|
public ElfDynamic(ElfDynamicTag tag, long value)
|
|
{
|
|
this.Tag = tag;
|
|
this.Value = value;
|
|
}
|
|
}
|
|
} |