commit | author | age | ||
7a519e | 1 | package net.jacekk.bridge; |
b20e6d | 2 | |
JK | 3 | public class BridgeResult { |
4 | public enum PointsFor { | |
5 | Us, Them | |
6 | } | |
7 | ||
8 | public PointsFor pointsFor; | |
9 | public int pointsBefore; | |
10 | public int points; | |
11 | public int IMPs; | |
12 | public int percent; | |
13 | } |