foul-magics/Mage/src/main/java/mage/game/events/ZoneChangeBatchEvent.java
xenohedron cb28fb5a56
Refactor batch events (#11995)
* create new abstract class for batch event framework

* adjust CardUtil.getEventTargets to support new framework

* update TappedBatchEvent to new framework

* update UntappedBatchEvent to new framework

* slight cleanup

* update LifeLostBatchEvent to new framework

* update ZoneChangeBatchEvent to new framework

* complete refactor by moving damage events to new framework

* remove old code no longer used

* clean up some nonsense code in star wars card

* fix watcher checking id before event type

* fix wrong id usage

* fix missed wrong id usage
2024-03-28 23:19:20 -04:00

8 lines
188 B
Java

package mage.game.events;
public class ZoneChangeBatchEvent extends BatchEvent<ZoneChangeEvent> {
public ZoneChangeBatchEvent() {
super(EventType.ZONE_CHANGE_BATCH);
}
}