Mercurial > hg > pub > prymula > com
view anielskiepuzzle/src/trefle/Coordinate.java @ 24:c7e131ce2f14
makefile rm
author | Przemyslaw <prymula76@outlook.com> |
---|---|
date | Mon, 01 Apr 2024 07:16:40 +0200 |
parents | 2787f5e749ae |
children |
line wrap: on
line source
package trefle; public class Coordinate{ public int x; public int y; public boolean click; public Coordinate (int _x, int _y, boolean _c){ x=_x; y=_y; click=_c; } }