source: src/main/java/onetomany/bargainingchipsgame/players/CoordinationMessage.java@ 290

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

Coordinator working

File size: 341 bytes
Line 
1package onetomany.bargainingchipsgame.players;
2
3import onetomany.bargainingchipsgame.players.utilityfunction.UtilityFunction;
4
5/**
6 * A message from the Coordinator to the buying agents
7 */
8public class CoordinationMessage
9{
10 public UtilityFunction f;
11
12 @Override
13 public String toString()
14 {
15 return f.toString();
16 }
17}
Note: See TracBrowser for help on using the repository browser.