com.jtransc.game.event.MouseEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-media-game Show documentation
Show all versions of jtransc-media-game Show documentation
JVM AOT compiler currently generating Javascript and Haxe, with initial focus on Kotlin and games.
package com.jtransc.game.event;
import com.jtransc.game.math.Point;
public class MouseEvent extends Event {
public Point position = new Point();
public int buttons = 0;
}