Package com.trevor.king.Mines.input

Examples of com.trevor.king.Mines.input.OptionsFile


    public static void main(String args[]) {
        if (args.length > 0) {
            if (args[0].equals("-debug")) debug = true;
        }
        options = new OptionsFile("mines.opt");
        boolean exist = options.read();
        if (!exist) {
            options.write(99, 30, 16, 0, 0, 9999);
            options.read();
        }
View Full Code Here

TOP

Related Classes of com.trevor.king.Mines.input.OptionsFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.