Mother2GbaTranslation/tools/ScriptTool/MiscStringRef.cs

26 lines
565 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 MiscStringRef
{
public int Index { get; set; }
public int OffsetLocation { get; set; }
public int OldPointer { get; set; }
public bool BasicMode { get; set; }
public string Old { get; set; }
public string New { get; set; }
public bool ShouldSerializeBasicMode()
{
return BasicMode;
}
}
}