import java.util.Date; /** */ public class AdminMain { private Date compTime; /** Construct a new Administrator with the given competition time. Should * probably include the game type, and maybe the Config (or file name for * it) and anything else we can think of. */ public AdminMain(Date when){ compTime = when; } /** Run the Admin... */ public static void main(String[] args) throws Exception { // - Open Registration // - When Competition Time arrives, shutdown the registration // and get the PlayerSpecs (from the RegServer) // - Create the Initial AdminState (with PlayerSpecs) // - "Off to the races!!" } }