Mother2GbaTranslation/tools/ScriptTool/FixedStringCollection.cs

21 lines
475 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
{
2015-03-20 14:41:20 +00:00
public class FixedStringCollection
2015-03-13 22:04:23 +00:00
{
public int StringsLocation { get; set; }
public IList<int> TablePointers { get; set; }
2015-03-13 22:04:23 +00:00
public int NumEntries { get; set; }
public int EntryLength { get; set; }
public IList<FixedStringRef> StringRefs { get; set; }
}
}