source:
src/main/java/onetomany/bargainingchipsgame/WishList.java@
277
Last change on this file since 277 was 277, checked in by , 5 years ago | |
---|---|
File size: 311 bytes |
Line | |
---|---|
1 | package onetomany.bargainingchipsgame; |
2 | |
3 | import java.util.List; |
4 | |
5 | /** |
6 | * A wish list is a list of chips with their quantitites. |
7 | * It is implemented as a bundle that does not specify prices. |
8 | */ |
9 | public class WishList extends Bundle |
10 | { |
11 | |
12 | public WishList(List<Stack> list) |
13 | { |
14 | super(list); |
15 | } |
16 | |
17 | } |
Note:
See TracBrowser
for help on using the repository browser.