view anielskiepuzzle/src/trefle/Coordinate.java @ 16:8fa14e28f099

flappyufo-spec fix
author Przemyslaw <prymula76@outlook.com>
date Sat, 24 Feb 2024 17:25:30 +0100
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;
    }
}