mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-22 08:10:40 +00:00
remove unused generator classes
This commit is contained in:
@@ -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);
|
|
||||||
}
|
|
||||||
@@ -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);
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user