source: src/main/java/bargainingchips/outcomes/Disagreement.java@ 330

Last change on this file since 330 was 327, checked in by Tim Baarslag, 5 years ago

Outcome defined

File size: 224 bytes
Line 
1package bargainingchips.outcomes;
2
3public class Disagreement extends Outcome
4{
5 public Disagreement()
6 {
7 super(null);
8 }
9
10 @Override
11 public String toString()
12 {
13 return "Disagreement (no outcome)";
14 }
15}
Note: See TracBrowser for help on using the repository browser.