Ejemplo n.º 1
0
    List <GameObject> copyList(g2_Pattern toCopy)
    {
        List <GameObject> old    = toCopy.getConfiguration();
        List <GameObject> config = new List <GameObject>(old.Count);

        foreach (var item in old)
        {
            config.Add(item);
        }
        return(config);
    }
Ejemplo n.º 2
0
 public void copy(g2_Pattern other)
 {
     this.tiles = copyList(other);
     setStringPattern(other.getConfiguration());
 }