de.gurkenlabs.litiengine.graphics.ZoomChangedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of litiengine Show documentation
Show all versions of litiengine Show documentation
The FOSS 2D Java game engine.
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;
}
}