using System.Collections.Generic; namespace OpenVIII { public class StringFile { #region Fields public Dictionary> sPositions; public List subPositions; #endregion Fields #region Constructors public StringFile(int count = 0) { sPositions = new Dictionary>(count); subPositions = new List(count); } public FF8StringReference this[uint i,int j] => sPositions[i][j]; public Loc this[int i] => subPositions[i]; #endregion Constructors } }