Kniffel/domain/Sheet.java

24 lines
419 B
Java
Raw Normal View History

package domain;
public class Sheet {
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;
}