package mug12; /** * A WorldBuilder * * @author Angeline Namai * @author Kyle Gonnerman * @author Michael Claveria * @version 1.0 of November 2004 */ public interface WorldBuilder { // +----------------+------------------------------------------ // | Public Methods | // +----------------+ /** * Check that this account exists */ public boolean checkAccount(String username, String password); /** * Get the current location of this user */ public String getLocation(String username); /** * List the contents in this room */ public String[] listContents(String room); /** * Describe this thing */ public String describeThing(String thing); }