2013-04-28 02:37:19 -07:00

10 lines
258 B
Java

package mods.tinker.tconstruct.library.util;
public interface IServantLogic
{
public CoordTuple getMasterPosition ();
public void notifyMasterOfChange();
public boolean verifyMaster(int x, int y, int z);
public boolean setMaster(int x, int y, int z);
}