Mercurial > hg > pub > prymula > com
diff anielskiepuzzle/src/trefle/Coordinate.java @ 0:2787f5e749ae
INIT
author | prymula <prymula76@outlook.com> |
---|---|
date | Thu, 21 Sep 2023 22:33:57 +0200 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/anielskiepuzzle/src/trefle/Coordinate.java Thu Sep 21 22:33:57 2023 +0200 @@ -0,0 +1,14 @@ +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; + } +}