Optimized frame repainting. Fixed mouse click processing.
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / humaninput / MouseClick.java
diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/gui/humaninput/MouseClick.java b/src/main/java/eu/svjatoslav/sixth/e3d/gui/humaninput/MouseClick.java
deleted file mode 100644 (file)
index fd82552..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Sixth 3D engine. Copyright ©2012-2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 3 of the GNU Lesser General Public License
- * or later as published by the Free Software Foundation.
- *
- */
-
-package eu.svjatoslav.sixth.e3d.gui.humaninput;
-
-import eu.svjatoslav.sixth.e3d.geometry.Point2D;
-
-public class MouseClick {
-
-    public Point2D coordinate;
-
-    /**
-     * Indicates pressed mouse button. Except 0 that simply means mouse over
-     * given region.
-     */
-    public int button;
-
-    public MouseClick(final int x, final int y, final int button) {
-        this(new Point2D(x, y), button);
-    }
-
-    public MouseClick(final Point2D coordinate, final int button) {
-        this.coordinate = coordinate;
-        this.button = button;
-    }
-
-}