source:
src/main/java/onetomany/bargainingchipsgame/players/CoordinationMessage.java@
290
Last change on this file since 290 was 279, checked in by , 5 years ago | |
---|---|
File size: 341 bytes |
Line | |
---|---|
1 | package onetomany.bargainingchipsgame.players; |
2 | |
3 | import onetomany.bargainingchipsgame.players.utilityfunction.UtilityFunction; |
4 | |
5 | /** |
6 | * A message from the Coordinator to the buying agents |
7 | */ |
8 | public 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.