2024-04-30 12:46:42 +02:00
|
|
|
package domain;
|
|
|
|
|
|
|
|
public class Sheet {
|
2024-05-04 21:06:05 +02:00
|
|
|
private String[] usedRows;
|
|
|
|
private String[] canceledRows;
|
|
|
|
private String[] emptyRows;
|
|
|
|
|
|
|
|
// Sheet rows, first half
|
|
|
|
int aces;
|
|
|
|
int twos;
|
|
|
|
int threes;
|
|
|
|
int fours;
|
|
|
|
int fives;
|
|
|
|
int sixes;
|
|
|
|
|
|
|
|
// Sheet rows, second half
|
|
|
|
int three_of_kind;
|
|
|
|
int four_of_kind;
|
|
|
|
int full_house;
|
|
|
|
int small_straight;
|
|
|
|
int large_straight;
|
|
|
|
int chance;
|
2024-04-30 12:46:42 +02:00
|
|
|
}
|