Package com.khorn.terraincontrol.generator.surface

Examples of com.khorn.terraincontrol.generator.surface.NullSurfaceGenerator


            {
                throw new AssertionError(e);
            }
        } else
        {
            defaultSetting = new NullSurfaceGenerator();
        }

        return readSettings(BiomeStandardValues.SURFACE_AND_GROUND_CONTROL, defaultSetting);
    }
View Full Code Here


    }

    @Override
    public SurfaceGenerator getDefaultValue()
    {
        return new NullSurfaceGenerator();
    }
View Full Code Here

                return mesa;
            }
            String[] parts = StringHelper.readCommaSeperatedString(string);
            return new SimpleSurfaceGenerator(parts);
        }
        return new NullSurfaceGenerator();
    }
View Full Code Here

TOP

Related Classes of com.khorn.terraincontrol.generator.surface.NullSurfaceGenerator

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.