Examples of RNG


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

Examples of squidpony.squidmath.RNG

        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

Examples of squidpony.squidmath.RNG

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

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

Examples of squidpony.squidmath.RNG

        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
Copyright © 2018 www.massapi.com. 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.