public void AddLayer(Background layer)
 {
     layers.Add(layer);
 }
 public void AddLayer(string texture, Vector2D push, Vector2D position)
 {
     Background layer = new Background(texture, position, push);
     AddLayer(layer);
 }