blob: 7f57ca7f5063d89a84448fad91590ee549464cec (
plain)
1
2
3
4
5
6
7
8
9
10
|
package ihl.interfaces;
import ic2.api.tile.IWrenchable;
public interface IWorkspaceElement extends IWrenchable
{
boolean canBeUsed();
void use();
boolean getIsInvalid();
}
|