package edu.caltech.cs0.war;
import java.io.FileNotFoundException;
import java.io.UnsupportedEncodingException;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws FileNotFoundException, UnsupportedEncodingException {
Scanner console = new Scanner(System.in);
try {
War.playGame();
} catch (EmptyDeckException e) {
System.err.println("Uh oh! The Deck or Card implemention is broken!");
System.exit(1);
}
}
}
-
Adam Blank authoredbaf0602a