SegmentMatch.cs 437 B

1234567891011121314151617181920212223242526
  1. namespace textUtility
  2. {
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using UnityEngine;
  6. public class SegmentMatch : BaseMatch
  7. {
  8. #region Config
  9. public List<List<int>> Segments = new List<List<int>>();
  10. public List<List<Vector3>> RectanglePositionsList = new List<List<Vector3>>();
  11. #endregion
  12. // public SegmentMatch(MatchData matchData) : base(matchData)
  13. //{
  14. //}
  15. }
  16. }