Mother2GbaTranslation/tools/ScriptTool/HardcodedString.cs

18 lines
360 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ScriptTool
{
class HardcodedString
{
public int OldPointer { get; set; }
public int[] PointerLocations { get; set; }
public string Old { get; set; }
public string New { get; set; }
}
}