39 lines
760 B
Java
39 lines
760 B
Java
/*
|
|
============================================================
|
|
This is the "Blockeintrag" file from Author: Philipp Kotte
|
|
written on: 05 / 10 / 2023 at: 23:44
|
|
============================================================
|
|
*/
|
|
package Domain.Block;
|
|
|
|
public class Blockeintrag {
|
|
public int punkte;
|
|
public int stiche;
|
|
|
|
public Blockeintrag() {
|
|
|
|
}
|
|
|
|
public Blockeintrag(int punkte, int stiche) {
|
|
this.punkte = punkte;
|
|
this.stiche = stiche;
|
|
}
|
|
|
|
public int getPunkte() {
|
|
return this.punkte;
|
|
}
|
|
|
|
public int getStiche() {
|
|
return this.stiche;
|
|
}
|
|
|
|
public void setStiche(int stiche) {
|
|
this.stiche = stiche;
|
|
}
|
|
|
|
public void setPunkte(int punkte) {
|
|
this.punkte = punkte;
|
|
}
|
|
|
|
}
|