mtg-decks-downloader

Tool to download Magic: The Gathering decklists from the Internet
git clone https://kevincorvisier.fr/git/mtg-decks-downloader.git
Log | Files | Refs | README

StopCondition.java (181B)


      1 package fr.kevincorvisier.mtg.dd;
      2 
      3 import fr.kevincorvisier.mtg.dd.model.DeckMetadata;
      4 
      5 public interface StopCondition
      6 {
      7 	int capacity();
      8 
      9 	int capacity(final DeckMetadata deck);
     10 }