Package engine.utility

Examples of engine.utility.Space


    public LevelScene(final Level level) {
        this.level = level;
        chunks = this.level.getChunks();
        blocks = this.level.getBlocks();
        actors = this.level.getActors();
        space = new Space(chunks[0].length * Chunk.WIDTH, chunks.length * Chunk.HEIGHT);
    }
View Full Code Here

TOP

Related Classes of engine.utility.Space

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.