source: src/main/java/onetomany/bargainingchipsgame/NegotiationContext.java@ 309

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

General NegotiationContext

File size: 314 bytes
RevLine 
[309]1package onetomany.bargainingchipsgame;
2
3public class NegotiationContext
4{
5 public static final int DEADLINE = 20;
6 OutcomeSpace outcomeSpace;
7
8 public NegotiationContext()
9 {
10 outcomeSpace = new OutcomeSpace(null);
11 }
12
13 public OutcomeSpace getOutcomeSpace()
14 {
15 return outcomeSpace;
16 }
17
18}
Note: See TracBrowser for help on using the repository browser.