forked from External/mage
23 lines
615 B
Java
23 lines
615 B
Java
package mage.util;
|
|
|
|
import java.io.Serializable;
|
|
|
|
// Author: alexander-novo
|
|
// A helper class for facilitating the multi-choose dialog
|
|
public class MultiAmountMessage implements Serializable {
|
|
public String message;
|
|
public int min;
|
|
public int max;
|
|
public int defaultValue;
|
|
|
|
public MultiAmountMessage(String message, int min, int max) {
|
|
this(message, min, max, min);
|
|
}
|
|
|
|
public MultiAmountMessage(String message, int min, int max, int defaultValue) {
|
|
this.message = message;
|
|
this.min = min;
|
|
this.max = max;
|
|
this.defaultValue = defaultValue;
|
|
}
|
|
}
|