view anielskiepuzzle/src/trefle/Coordinate.java @ 18:b5e2aba31fdb

lamertetris-0.230821-3 package for arch
author Przemyslaw <prymula76@outlook.com>
date Sun, 31 Mar 2024 15:35:26 +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;
    }
}