package src.main; import src.main.models.Game; public class Main { static Game game; public static void main(String[] args) { } /** * Function name: getData * @return (String[][]) * @throws FileNotFoundException * * Inside the function: * 1. Returns data from TEAMS_FILE as a String[][] array */ /** Function name: startGame * * Inside the function: * 1. Grabs each play from plays.txt and calls game.simulate(play); * 2. Prints the return from game.simulate(play) * - println("\n" + + "\n"); */ /** Function name: printResult() * * Inside the function: * 1. Prints the final score: println("\nGRYFFINDOR: " + + " SLYTHERIN: " + ); * 2. Prints the winner: println("\n" + + " WINS!"); * */ /** * Function name: wait * @param sec * * Inside the function: * 1. Make the code sleep for X seconds. */ }