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
|
||||
{
|
||||
public struct RelocEntry
|
||||
struct RelocEntry
|
||||
{
|
||||
public int Position;
|
||||
public string Name;
|
||||
|
@ -10,5 +10,10 @@ namespace ARMeilleure.Translation.AOT
|
|||
Position = position;
|
||||
Name = name;
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"(Position = {Position}, Name = {Name})";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue