source:
src/main/java/onetomany/bargainingchipsgame/WishList.java@
281
Last change on this file since 281 was 281, checked in by , 5 years ago | |
---|---|
File size: 265 bytes |
Line | |
---|---|
1 | package onetomany.bargainingchipsgame; |
2 | |
3 | import java.util.Map; |
4 | |
5 | /** |
6 | * A wish list is a list of chips with their quantitites. |
7 | */ |
8 | public 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.