minor refactors

This commit is contained in:
James Seibel
2022-04-24 17:19:16 -05:00
parent 5a79fac6b1
commit babc65217c
3 changed files with 3 additions and 8 deletions
@@ -28,8 +28,6 @@ import java.io.InputStreamReader;
import org.lwjgl.opengl.GL32;
import com.seibel.lod.core.api.ClientApi;
import static com.seibel.lod.core.render.GLProxy.GL_LOGGER;
/**
@@ -26,8 +26,6 @@ import java.util.TreeSet;
import org.lwjgl.opengl.GL32;
import com.seibel.lod.core.api.ClientApi;
import static com.seibel.lod.core.render.GLProxy.GL_LOGGER;
@@ -30,13 +30,12 @@ import com.seibel.lod.core.handlers.dependencyInjection.IBindable;
* @author James Seibel
* @version 3-5-2022
*/
public interface IVersionConstants extends IBindable {
public interface IVersionConstants extends IBindable
{
/** @returns the minimum height blocks can be generated */
int getMinimumWorldHeight();
/**
* @Returns the number of generations call per thread.
*/
/** @Returns the number of generations call per thread. */
default int getWorldGenerationCountPerThread() {
return 8;
}