////////////////////////////////////////////////////////////////////////////////
// Title:            (program's title)
// Files:            (list of source files)
// Semester:         CS302 Summer 2015
//
// Author:           (your name)
// Email:            (your email address)
// Lecturer's Name:  Emily Gember-Jacobson
////////////////////////////////////////////////////////////////////////////////

import java.util.Scanner;

/**
 * (Write a succinct description of this class here. You should avoid
 * wordiness and redundancy. If necessary, additional paragraphs should
 * be preceded by <p>, the html tag for a new paragraph.)
 *
 * <p>Bugs: (a list of bugs and other problems)
 *
 * @author (your name)
 */
public class PickUpSticks {
    
    /**
     * (Write a succinct description of this method here. If necessary,
     * additional paragraphs should be preceded by <p>, the html tag for
     * a new paragraph.)
     *
     * @param args UNUSED
     */
    public static void main(String[] args) {
        // Create scanner connected to keyboard for user input
        Scanner in = new Scanner(System.in);

        // TODO: PRINT WELCOME MESSAGE
    
        // TODO: MAIN COMMAND LOOP
        {
            // TODO: PRINT USER OPTIONS
            
            // TODO: READ USER INPUT

            // TODO: HANDLE OPTION: PLAY
            {
                // TODO: DETERMINE IF THIS IS THE FIRST GAME OR NOT
                
                // TODO: GET PLAYERS' NAMES

                // TODO: INITIALIZE GAME

                // TODO: PLAY GAME

                // TODO: DETERMINE WINNER
            }
            // TODO: HANDLE OPTION: HELP
            
            // TODO: HANDLE OPTION: EXIT

            // TODO: HANDLE OPTION: Unexpected user input
        
        }

        // Close scanner
        in.close();
    }
}
