package io.p2vman.vmodextras.trackwork;
public interface IBlockEntityClear {
boolean clear();
default boolean reset() {
return clear();
}