Update RelocEntry.cs

This commit is contained in:
LDj3SNuD 2019-09-11 17:09:07 +02:00 committed by GitHub
parent 2220bed33f
commit cff5653990
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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})";
}
}
}
}