source:
src/main/java/bargainingchips/outcomes/Disagreement.java@
341
Last change on this file since 341 was 327, checked in by , 5 years ago | |
---|---|
File size: 224 bytes |
Rev | Line | |
---|---|---|
[327] | 1 | package bargainingchips.outcomes; |
[318] | 2 | |
[327] | 3 | public class Disagreement extends Outcome |
[318] | 4 | { |
5 | public Disagreement() | |
6 | { | |
[327] | 7 | super(null); |
[318] | 8 | } |
[326] | 9 | |
10 | @Override | |
11 | public String toString() | |
12 | { | |
13 | return "Disagreement (no outcome)"; | |
14 | } | |
[318] | 15 | } |
Note:
See TracBrowser
for help on using the repository browser.