/* * Setting.java */ import java.awt.*; /* System Setting */ public interface Setting { static int XMAX = 96; static int YMAX = 55; static int ZMAX = 33; static int depth = 2; static int d2 = depth+depth; static Color white = Color.white; static Color ltGray = Color.white; static Color dkGray = Color.gray; static Color gray = Color.lightGray; static Color black = Color.black; final static Font bfont = new Font("TimesRoman", Font.BOLD, 14); final static LayoutManager flow = new FlowLayout(FlowLayout.CENTER, d2, d2); final static Insets insets = new Insets(depth, depth, depth, depth); }