source: src/main/java/bargainingchips/protocol/ValidationSuccessWithBreakoff.java@ 323

Last change on this file since 323 was 321, checked in by Tim Baarslag, 6 years ago

Breakoff works

File size: 332 bytes
Line 
1package bargainingchips.protocol;
2
3import bargainingchips.actions.Disagreement;
4
5/**
6 * The offer was valid but the negotiation has ended WITHOUT a deal
7 */
8public class ValidationSuccessWithBreakoff extends ValidationResult
9{
10 public ValidationSuccessWithBreakoff()
11 {
12 super(true, true, new Disagreement());
13 }
14}
Note: See TracBrowser for help on using the repository browser.