Package com.mlarktar.spacewar.sprites

Examples of com.mlarktar.spacewar.sprites.Planet


      }
    }

    // Adds a planet in the middle of the screen   
    if (ngf.getUsePlanet() || ngf.getUseGravity()) {
      Planet planet =
        new Planet(
          (int) bounds.getCenterX(),
          (int) bounds.getCenterY(),
          ngf.getUsePlanet());
      space.addSpaceItem(planet, ngf.getUseGravity());
    }
View Full Code Here

TOP

Related Classes of com.mlarktar.spacewar.sprites.Planet

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.