dashboard
repositories
filestore
activity
search
login
brydz
/
android
Obliczenia brydżowe (Android)
summary
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
Allow to reset application state using "back" button & fix toggles state de...
Jacek Kowalski
2015-01-17
2d8187935c8a6d1fca8d9dbd916b7143c3e41c9c
[brydz/android]
/
app
/
src
/
main
/
java
/
net
/
jacekk
/
bridge
/
BridgeResult.java
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;
}