Package net.itscrafted.entity

Examples of net.itscrafted.entity.Wave


  public static void createWave(double x, double y, int width) {
    createWave(x, y, width, Color.WHITE);
  }
 
  public static void createWave(double x, double y, int width, Color c) {
    particles.add(new Wave(x, y, width, c));
    checkLimit();
  }
View Full Code Here


  public static void createSmallWave(double x, double y, int width) {
    createSmallWave(x, y, width, Color.WHITE);
  }
 
  public static void createSmallWave(double x, double y, int width, Color c) {
    Wave w = new Wave(x, y, width, c);
    w.setTickDelay(30);
    particles.add(w);
    checkLimit();
  }
View Full Code Here

TOP

Related Classes of net.itscrafted.entity.Wave

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.