1234567891011121314151617181920212223242526 |
- namespace textUtility
- {
- using System.Collections;
- using System.Collections.Generic;
-
- using UnityEngine;
-
- public class SegmentMatch : BaseMatch
- {
- #region Config
- public List<List<int>> Segments = new List<List<int>>();
- public List<List<Vector3>> RectanglePositionsList = new List<List<Vector3>>();
- #endregion
- // public SegmentMatch(MatchData matchData) : base(matchData)
- //{
- //}
- }
- }
|