/*
The code is available only to persons
currently affiliated with any of the following,
      o Universities and schools
      o Non-commercial research organizations
      o Registered not-for-profit organizations
      o Registered charities
For these people, the license is of the form of
the GNU Public License version 2.  The restrictions
must remain attached to this and any subsequently derived code.
All other people have no implicit right to use, read, or copy
this software unless granted by Mr. Deck
THIS SOFTWARE IS PROVIDED "AS IS" AND MR. DECK
MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, HE
MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT-
ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE
OF THE LICENSED SOFTWARE AND DOCUMENTATION WILL NOT
INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR
*/

import java.awt.Font;
import java.util.Random;

class env
{
    public static final byte UPDATE=100; 
    public static final byte NEWUSER=101; 
    public static final byte DELUSER=102; 
    public static Font font=new Font("Courier",Font.PLAIN,12);
    public static String host = "artcontext.com";
    public static int port = 7780;
    public static String name = ""; 
    public static String users = "";
    public static String user = "";
    public static String reconnecting = "";
    public static String connecting = "";
    public static String tryreload = "";
    public static String disconnected = "";
    public static String overmax = "";
    public static String serverdown = "";
    public static String welcome = "";
    public static String kcol = "";
    public static String save = "";
    public static String open = "";
    public static String nav = "";
    public static String type = "";
    public static String cpick = "";
    public static String saveLbl = "";
    public static String deriveLbl = "";
}
