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

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

WishList v1

File size: 311 bytes
Line 
1package onetomany.bargainingchipsgame;
2
3import 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 */
9public 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.