Exemple #1
0
        MatchLane CloneLane(MatchLane other)
        {
            MatchLane lane = GetPoolLane();

            lane.Initialize(other);
            return(lane);
        }
Exemple #2
0
        MatchLane CreateLane(MatchMode mode, int pos)
        {
            MatchLane lane = GetPoolLane();

            lane.Initialize(mode, pos);
            if (mode == MatchMode.Acronym)
            {
                lane.WordStartsMatched = 1;
            }
            return(lane);
        }