/* This file uses the X Macro trick to encode information about the
 * different commands.  The syntax is
 *
 * DEFINE_COMMAND(command, "description")
 */
DEFINE_COMMAND(move, "Moves a card.")
DEFINE_COMMAND(lift, "Takes a card and places it in the 'done' pile.")
DEFINE_COMMAND(help, "Prints the help menu.")
DEFINE_COMMAND(quit, "Quits the game.")
