remove useless Structure#generate implementation

This commit is contained in:
dfsek
2021-07-22 18:44:23 -07:00
parent 6d0a32f251
commit 9d687208c9
3 changed files with 1 additions and 22 deletions

View File

@@ -10,16 +10,6 @@ import com.dfsek.terra.api.world.World;
import java.util.Random;
public interface Structure extends StringIdentifiable {
/**
* Paste the structure at a location
*
* @param location Location to paste structure
* @param world
* @param rotation Rotation of structure
* @return Whether generation was successful
*/
boolean generate(Vector3 location, World world, Random random, Rotation rotation);
boolean generate(Vector3 location, World world, Chunk chunk, Random random, Rotation rotation);
boolean generate(Buffer buffer, World world, Random random, Rotation rotation, int recursions);