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

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

WishList created

File size: 324 bytes
RevLine 
[278]1package onetomany.bargainingchipsgame;
2
[281]3import java.util.HashMap;
4import java.util.Map;
5
[278]6/**
7 * Represents a function from Chips to Double;
8 * such as quantity, price bounds, etc.
9 */
[281]10public class ChipMapping<T>
[278]11{
[281]12 protected Map<Chip, T> f;
[278]13
[281]14 public ChipMapping()
15 {
16 f = new HashMap<Chip, T>();
17 }
[278]18
19}
Note: See TracBrowser for help on using the repository browser.