Package obj

Examples of obj.Enemy


            debut.add(new Point2D.Double(x+0.5, y+0.5));

            //si c'est un enemy, on l'ajoute dans le tableau des enemies
          }else if ( grid[x][y] == 2 ){
            //enemy
            elements.add(new Enemy(perso, (float)(x+0.5), (float)(y+0.5)));
          }

        }
      }
View Full Code Here

TOP

Related Classes of obj.Enemy

Copyright © 2018 www.massapicom. 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.