mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 02:38:02 +00:00
18 lines
333 B
Java
18 lines
333 B
Java
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
package forge.game.event;
|
|
|
|
/**
|
|
*
|
|
* @author Agetian
|
|
*/
|
|
public class SetTappedEvent extends Event {
|
|
public final boolean Tapped;
|
|
|
|
public SetTappedEvent(boolean tapped) {
|
|
Tapped = tapped;
|
|
}
|
|
}
|