All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gurkenlabs.litiengine.graphics.ZoomChangedEvent Maven / Gradle / Ivy

The newest version!
package de.gurkenlabs.litiengine.graphics;

public class ZoomChangedEvent extends CameraEvent {
  private static final long serialVersionUID = -427566098748292912L;
  private final double zoom;

  ZoomChangedEvent(ICamera source, double zoom) {
    super(source);
    this.zoom = zoom;
  }

  public double getZoom() {
    return this.zoom;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy