Top level
npublic class NimGame {
n public static void  main (String[] args) {
n GameManager theGame = new GameManager
n (new Player(“Player 1”),
n  new Player(“Player 2”));
n NimUI theInterface = new NimUI
n     (theGame);
n theInterface.start();
n }
n}