remove WorldConfig

This commit is contained in:
dfsek
2021-12-02 19:46:35 -07:00
parent a2a8f6e471
commit 2c963e14d5
5 changed files with 0 additions and 118 deletions

View File

@@ -1,28 +0,0 @@
/*
* Copyright (c) 2020-2021 Polyhedral Development
*
* The Terra API is licensed under the terms of the MIT License. For more details,
* reference the LICENSE file in the common/api directory.
*/
package com.dfsek.terra.api.config;
import java.util.Map;
import com.dfsek.terra.api.registry.Registry;
import com.dfsek.terra.api.util.StringIdentifiable;
import com.dfsek.terra.api.world.ServerWorld;
import com.dfsek.terra.api.world.biome.generation.BiomeProvider;
public interface WorldConfig extends StringIdentifiable {
<T> Registry<T> getRegistry(Class<T> clazz);
ServerWorld getWorld();
BiomeProvider getProvider();
ConfigPack getPack();
Map<String, String> getLocatable();
}