Terrain.java :  » Game » javadungeoncrawlerv01 » terrain » Java Open Source

Java Open Source » Game » javadungeoncrawlerv01 
javadungeoncrawlerv01 » terrain » Terrain.java
package terrain;

import tools.Bounds;

/**
 * This class will handle collisions with the terrain and create the
 * TerrainRow objects.
 */
public final class Terrain {
    /**
     * Private constructor so that Terrain cannot be instanced. All
     * methods will be static.
     */
    private Terrain() {
        // Do nothing
    }

    /** Clears the terrain to default. */
    public static void reset() {
        // TODO
    }

    /** Re-render the given region of the terrain. */
    public static void updateRegion(Bounds bounds) {
        // TODO
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.