/** (C) Game Page Network, Inc., Confidential, All Rights Reserved */
// TablesCommand.java
// --paul@gamepage.net, 25jul97

import java.util.*;

public class TablesCommand extends Command {
  TablesCommand() {
    super("tables", 0, null,
          "Query the tables database.\n"+
          "See also: who, observe, join, open, reset.");
    anonymous = true;
  }
  public void process(StringTokenizer args, Client c) {
    Table.showTables(c);
  }
}

