Update RelocEntry.cs
This commit is contained in:
parent
2220bed33f
commit
cff5653990
1 changed files with 7 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
namespace ARMeilleure.Translation.AOT
|
namespace ARMeilleure.Translation.AOT
|
||||||
{
|
{
|
||||||
public struct RelocEntry
|
struct RelocEntry
|
||||||
{
|
{
|
||||||
public int Position;
|
public int Position;
|
||||||
public string Name;
|
public string Name;
|
||||||
|
@ -10,5 +10,10 @@ namespace ARMeilleure.Translation.AOT
|
||||||
Position = position;
|
Position = position;
|
||||||
Name = name;
|
Name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override string ToString()
|
||||||
|
{
|
||||||
|
return $"(Position = {Position}, Name = {Name})";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue