Package squidpony.squidmath

Examples of squidpony.squidmath.RNG


    public RunningBondDungeon() {
        this(20, 80);
    }

    public RunningBondDungeon(int wide, int high) {
        this(wide, high, new RNG());
    }
View Full Code Here


        this(wide, high, random, null, null);
    }

    public RunningBondDungeon(int wide, int high, InputStream horizStream,
            InputStream vertStream) {
        this(wide, high, new RNG(), horizStream, vertStream);
    }
View Full Code Here

    public BrickDungeon() {
        this(20, 80);
    }

    public BrickDungeon(int wide, int high) {
        this(wide, high, new RNG());
    }
View Full Code Here

        this(wide, high, random, null, null);
    }

    public BrickDungeon(int wide, int high, InputStream horizStream,
            InputStream vertStream) {
        this(wide, high, new RNG(), horizStream, vertStream);
    }
View Full Code Here

TOP

Related Classes of squidpony.squidmath.RNG

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.