forked from External/mage
11 lines
319 B
Java
11 lines
319 B
Java
package mage.game.events;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public class DamagedBatchForPermanentsEvent extends BatchEvent<DamagedPermanentEvent> {
|
|
|
|
public DamagedBatchForPermanentsEvent(DamagedPermanentEvent firstEvent) {
|
|
super(EventType.DAMAGED_BATCH_FOR_PERMANENTS, false, false, false, firstEvent);
|
|
}
|
|
}
|