source: src/main/java/onetomany/bargainingchipsgame/WishList.java@ 281

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

WishList created

File size: 265 bytes
Line 
1package onetomany.bargainingchipsgame;
2
3import java.util.Map;
4
5/**
6 * A wish list is a list of chips with their quantitites.
7 */
8public class WishList extends ChipMapping<Integer>
9{
10
11 public WishList(Map<Chip, Integer> f)
12 {
13 this.f = f;
14 }
15
16
17}
Note: See TracBrowser for help on using the repository browser.