inonit.domain.game.card.hearts
Interface Intelligence.Game.Log
- Enclosing class:
- Intelligence.Game
- public static interface Intelligence.Game.Log
A log for a particular game. Game logs contain a play-by-play of the game, as well as any log messages
players insert into it by invoking log(java.lang.String)
.
Some games do not have logs; invoking log()
during those games has no effect.
Method Summary |
void |
log(java.lang.String message)
Logs a message to the game log. |
log
public void log(java.lang.String message)
- Logs a message to the game log.
- Parameters:
message
- A message to log.