10 lines
241 B
Java
10 lines
241 B
Java
package mods.tinker.common;
|
|
|
|
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);
|
|
}
|