Stringfile.cs 702 B

123456789101112131415161718192021222324252627282930313233
  1. using System.Collections.Generic;
  2. namespace FF8
  3. {
  4. public class Stringfile
  5. {
  6. #region Fields
  7. public Dictionary<uint, List<uint>> sPositions;
  8. public List<Loc> subPositions;
  9. #endregion Fields
  10. #region Constructors
  11. public Stringfile(Dictionary<uint, List<uint>> sPositions, List<Loc> subPositions)
  12. {
  13. this.sPositions = sPositions;
  14. this.subPositions = subPositions;
  15. }
  16. /// <summary>
  17. /// do not use this.
  18. /// </summary>
  19. private Stringfile()
  20. {
  21. this.sPositions = null;
  22. this.subPositions = null;
  23. }
  24. #endregion Constructors
  25. }
  26. }