Mercurial > hg > pub > prymula > com
view numpuzzle/src/numpuzzle/Pole.java @ 20:b637ac9c6605
lamertetris - PKGBUILD corrections
author | Przemyslaw <prymula76@outlook.com> |
---|---|
date | Sun, 31 Mar 2024 16:21:08 +0200 |
parents | 2787f5e749ae |
children |
line wrap: on
line source
package numpuzzle; public class Pole { public int wartosc; final int numerporzadkowy; int test; char znak; public Pole(int numerporzadkowy, char znak) { this.numerporzadkowy = numerporzadkowy; this.znak=znak; } public void setTest(int n) { test=n; } }