remove unused generator classes

This commit is contained in:
dfsek 2021-11-28 16:42:08 -07:00
parent 2d5b384ae4
commit b882e5e62b
2 changed files with 0 additions and 39 deletions

View File

@ -1,17 +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.world;
import com.dfsek.terra.api.world.access.ServerWorld;
import com.dfsek.terra.api.world.chunk.ChunkAccess;
public interface Carver {
void carve(ServerWorld world, int chunkX, int chunkZ, ChunkAccess chunk);
}

View File

@ -1,22 +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.world;
import java.util.List;
import com.dfsek.terra.api.util.Range;
import com.dfsek.terra.api.util.vector.Vector3;
import com.dfsek.terra.api.world.access.ServerWorld;
import com.dfsek.terra.api.world.chunk.Chunk;
public interface Flora {
boolean plant(Vector3 l, ServerWorld world);
List<Vector3> getValidSpawnsAt(Chunk chunk, int x, int z, Range check);
}