Mother2GbaTranslation/tools/ScriptTool/FixedStringRef.cs

19 lines
376 B
C#
Raw Normal View History

2015-03-13 22:04:23 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace ScriptTool
{
public class FixedStringRef
{
public int Index { get; set; }
public int OldPointer { get; set; }
public string Old { get; set; }
public string New { get; set; }
}
}