Mother2GbaTranslation/tools/ScriptTool/MainStringRef.cs

24 lines
511 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace ScriptTool
{
public class MainStringRef
{
public int Index { get; set; }
public int PointerLocation { get; set; }
public int OldPointer { get; set; }
public string Label { get; set; }
public override string ToString()
{
return "[" + Index.ToString("X3") + "] " + Label;
}
}
}