source: src/main/java/onetomany/bargainingchipsgame/Domain.java@ 290

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

OutcomeSpace

File size: 331 bytes
Line 
1package onetomany.bargainingchipsgame;
2
3import java.util.List;
4
5import java.util.ArrayList;
6
7/**
8 * The chips that are under negotiation.
9 */
10public class Domain
11{
12 List<Chip> chips;
13
14 public Domain()
15 {
16 chips = new ArrayList<Chip>();
17 }
18
19 public void add(String c)
20 {
21 chips.add(new Chip(c));
22 }
23
24}
Note: See TracBrowser for help on using the repository browser.