/**
 * 
 */
package adventure;

/**
 * @author David Matuszek
 * @author // TODO fill in your name here
 */
public class AdventureModel {

    /**
     * Returns a list of commands.
     * 
     * @return A possibly incomplete list of commands.
     */
    public Object getListOfCommands() {
        return "Available commands are:\n" +
                "      go <direction> -- move to a different room\n" +
                "           (directions may be abbreviated)\n" +
                "      <direction> -- same as go <direction>\n" +
                "      look -- display room description and objects in room\n" +
                "      look <object> -- examine an object carefully\n" +
        		"      take <object> -- pick up an object\n" +
        		"      use <object> -- use the object\n" +
        		"           (means different things for different objects)\n" +
        		"      drop <object> -- put the object down in this room\n" +
        		"There may be other, game-specific commands.";
    }

}

