Ejemplo n.º 1
0
    internal static List <General> CreateHelpers(List <Vector2> _seaSoul, string root)
    {
        List <General> res  = new List <General>();
        var            list = U2D.FromListV2ToV3(_seaSoul);

        for (int i = 0; i < list.Count; i++)
        {
            res.Add(General.Create(root, list[i]));
        }
        return(res);
    }