Ejemplo n.º 1
0
 public void AddLayer(Background layer)
 {
     layers.Add(layer);
 }
Ejemplo n.º 2
0
 public void AddLayer(string texture, Vector2D push, Vector2D position)
 {
     Background layer = new Background(texture, position, push);
     AddLayer(layer);
 }