ConstructionWand/src/main/java/thetadev/constructionwand/basics/pool/IPool.java

11 lines
172 B
Java

package thetadev.constructionwand.basics.pool;
import javax.annotation.Nullable;
public interface IPool<T>
{
void add(T element);
@Nullable
T draw();
void reset();
}