forked from External/mage
[FIN] Implement The Darkness Crystal
This commit is contained in:
parent
7bacda60b1
commit
cde927469a
3 changed files with 180 additions and 1 deletions
|
|
@ -14,7 +14,10 @@ import java.util.stream.Collectors;
|
|||
*/
|
||||
public class Counters extends HashMap<String, Counter> implements Serializable, Copyable<Counters> {
|
||||
|
||||
public Counters() {
|
||||
public Counters(Counter... counters) {
|
||||
for (Counter counter : counters) {
|
||||
this.addCounter(counter);
|
||||
}
|
||||
}
|
||||
|
||||
protected Counters(final Counters counters) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue