log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
hg
>
pub
>
prymula
>
com
comparison anielskiepuzzle/src/trefle/Coordinate.java @ 0:
2787f5e749ae
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
INIT
author
prymula <prymula76@outlook.com>
date
Thu, 21 Sep 2023 22:33:57 +0200
parents
children
comparison
equal
deleted
inserted
replaced
-1:000000000000
0:2787f5e749ae
1
package trefle;
2
3
4
public class Coordinate{
5
public int x;
6
public int y;
7
public boolean click;
8
9
public Coordinate (int _x, int _y, boolean _c){
10
x=_x;
11
y=_y;
12
click=_c;
13
}
14
}