source: src/main/java/bargainingchips/ChipMapping.java@ 315

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

package restructure

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