forked from External/mage
add doc comments for usage of default watchers
This commit is contained in:
parent
a4cc086775
commit
1ac4fe4e4a
11 changed files with 28 additions and 6 deletions
|
|
@ -1340,10 +1340,10 @@ public abstract class GameImpl implements Game {
|
|||
newWatchers.add(new CastSpellLastTurnWatcher());
|
||||
newWatchers.add(new PlayerLostLifeWatcher());
|
||||
newWatchers.add(new BlockedAttackerWatcher());
|
||||
newWatchers.add(new DamageDoneWatcher());
|
||||
newWatchers.add(new PlanarRollWatcher());
|
||||
newWatchers.add(new DamageDoneWatcher()); // TODO: no need to be default watcher
|
||||
newWatchers.add(new PlanarRollWatcher()); // TODO: no need to be default watcher
|
||||
newWatchers.add(new AttackedThisTurnWatcher());
|
||||
newWatchers.add(new PlayersAttackedThisTurnWatcher());
|
||||
newWatchers.add(new PlayersAttackedThisTurnWatcher()); // TODO: no need to be default watcher
|
||||
newWatchers.add(new CardsDrawnThisTurnWatcher());
|
||||
newWatchers.add(new ManaSpentToCastWatcher());
|
||||
newWatchers.add(new ManaPaidSourceWatcher());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue