X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Fgui%2Fhumaninput%2FMouseEvent.java;h=2a9582121df9f441e8b6caf56f2dfdf8cf9c9838;hb=197ac1b87328bb5b06ba52d3768af04b2007b087;hp=6589ac7fc6cd27c0b09ed0750467b3e831e21215;hpb=9dcd9d8a7d3bc16eb6fde3681cd32e02dc0707e9;p=sixth-3d.git diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/gui/humaninput/MouseEvent.java b/src/main/java/eu/svjatoslav/sixth/e3d/gui/humaninput/MouseEvent.java index 6589ac7..2a95821 100644 --- a/src/main/java/eu/svjatoslav/sixth/e3d/gui/humaninput/MouseEvent.java +++ b/src/main/java/eu/svjatoslav/sixth/e3d/gui/humaninput/MouseEvent.java @@ -1,10 +1,8 @@ /* - * 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. + * Sixth 3D engine. Author: Svjatoslav Agejenko. + * This project is released under Creative Commons Zero (CC0) license. * +* */ package eu.svjatoslav.sixth.e3d.gui.humaninput; @@ -21,13 +19,20 @@ public class MouseEvent { */ public int button; - public MouseEvent(final int x, final int y, final int button) { + MouseEvent(final int x, final int y, final int button) { this(new Point2D(x, y), button); } - public MouseEvent(final Point2D coordinate, final int button) { + MouseEvent(final Point2D coordinate, final int button) { this.coordinate = coordinate; this.button = button; } + @Override + public String toString() { + return "MouseEvent{" + + "coordinate=" + coordinate + + ", button=" + button + + '}'; + } }