public Level(ContentManager content)
        {
            this.content = content;

            sup1 = new Support1(content, this);
            sup2 = new Support2(content, this);
            villain1 = new Villain(content, this);
            hero = new Hero(content, this);
        }
 public Level(ContentManager content)
 {
     this.content = content;
     hero = new Hero(content, this);
     //hero1 = new Hero1(content, this);
 }