
dcutils.cards.mtg.Tap Maven / Gradle / Ivy
package dcutils.cards.mtg;
/**
* Represents the concept of a "tap" operation on Magic the Gathering.
* @author dca
*/
public class Tap {
/** A string that represents the "tap" operation.
*/
private String text = "<>";
/**
* Returns the "tap" operation.
* @return String the "tap" operation.
*/
public String getText() {
return this.text;
} // END getText
/**
* Returns the "tap" operation.
* @return String the "tap" operation.
*/
@Override
public String toString() {
return getText();
} // END toString
} // END class Tap
© 2015 - 2025 Weber Informatics LLC | Privacy Policy