remove Tree

This commit is contained in:
dfsek
2021-11-27 09:55:31 -07:00
parent e616d21bea
commit baf7230b1b
7 changed files with 4 additions and 233 deletions
@@ -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.Random;
import java.util.Set;
import com.dfsek.terra.api.block.BlockType;
import com.dfsek.terra.api.util.vector.Vector3;
public interface Tree {
boolean plant(Vector3 l, World world, Random r);
Set<BlockType> getSpawnable();
}