Package com.googlecode.jumpnevolve.graphics

Examples of com.googlecode.jumpnevolve.graphics.Pollable


      }
    };
  }
 
  public Pollable getPollable() {
    return new Pollable() {
      public void poll(Input input, float secounds) {
        ParticleEffect.this.poll(input, secounds);
      }
    };
  }
View Full Code Here


   * @return Ein Pollable, das diesen Effekt animiert. Der Effekt selbst ist
   *         Drawable und Pollable. Diese Methode kann verwendet werden, wenn
   *         er nur als Pollable repräsentiert werden soll.
   */
  public Pollable getPollable() {
    return new Pollable() {
      public void poll(Input input, float secounds) {
        ParticleEffect.this.poll(input, secounds);
      }
    };
  }
View Full Code Here

TOP

Related Classes of com.googlecode.jumpnevolve.graphics.Pollable

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.