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 MiscStringCollection
|
2015-03-13 22:04:23 +00:00
|
|
|
|
{
|
|
|
|
|
public int OffsetTableLocation { get; set; }
|
|
|
|
|
public int StringsLocation { get; set; }
|
|
|
|
|
|
|
|
|
|
public IList<MiscStringRef> StringRefs { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|