/* File: App.java - March 2018 */ package l02; import java.util.Arrays; import java.util.Random; /** * The application class for a simple dice game. * * @author Michael Albert */ public class App{ public static void main(String[] args) { Manager m = new BasicManager(new Cheater(), new HumanPlayer("Michael")); m.runGame(); } }