Obliczenia brydżowe (Android)
Jacek Kowalski
2015-01-17 80f235c3ac05e57fe1f878c37cb141374e643e50
1
2
3
4
5
6
7
8
9
10
11
12
13
package net.jacekk.bridge;
 
public class BridgeResult {
    public enum PointsFor {
        Us, Them
    }
 
    public PointsFor pointsFor;
    public int pointsBefore;
    public int points;
    public int IMPs;
    public int percent;
}