mtg-genetic-deckbuilding

Generating and improving Magic: The Gathering decks using a genetic algorithm
git clone https://kevincorvisier.fr/git/mtg-genetic-deckbuilding.git
Log | Files | Refs | LICENSE

Reloadable.java (132B)


      1 package fr.kevincorvisier.mtg.gdb;
      2 
      3 import java.io.IOException;
      4 
      5 public interface Reloadable
      6 {
      7 	void reload() throws IOException;
      8 }