Examples of MacaVerde


Examples of exemplo5.itens.MacaVerde

    this.itens = new ArrayList<Item>();
    //NOVIDADE -> Inicializa��o das ma��s
    //Vou utilizar um loop para gerar 40 �tens,
    //20 ma�as verdes e 20 vermelhas. O cen�rio vai ficar muito estranho
    for(int i = 0; i < 20; i++){
      this.itens.add( new MacaVerde() );
      this.itens.add( new MacaVenenosa() );
    }
   
  }
View Full Code Here

Examples of exemplo5.itens.MacaVerde

   
    this.inimigoPerseguidor = new InimigoPerseguidor();   
    this.chegada = new Chegada(750, 550);

    //NOVIDADE -> Inicializa��o das ma��s
    this.maca1 = new MacaVerde();
    this.maca2 = new MacaVenenosa();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.