home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 14 / IOPROG_14.ISO / soft / sdkjava / sdkjava.exe / SDKJava.cab / Samples / AFC / Puzzle15 / Src / Pz15Options.java < prev    next >
Encoding:
Java Source  |  1998-03-05  |  502 b   |  22 lines

  1. //
  2. // (c) 1998 Microsoft Corporation.  All rights reserved.
  3. //
  4. import java.awt.Insets;
  5. import com.ms.ui.*;
  6. import com.ms.fx.*;
  7.  
  8. public class Pz15Options extends UIPropertyDialog implements Pz15Consts
  9. {
  10.     Insets m_Insets;
  11.     public boolean cpuactive;
  12.     public int navmode;
  13.     public int numscramble;
  14.  
  15.     public Pz15Options(UIFrame frame, String title, boolean modal, int pagesize)
  16.     {
  17.         super(frame, title, modal, pagesize);
  18.         cpuactive = true;
  19.         navmode = M_BUTTON;
  20.         numscramble = 60;
  21.     }
  22. }