blob: 77e2d0636c9d6ca85202798c910b6a9e5c25a857 [file] [log] [blame] [raw]
package gamax92.thistle.api;
import li.cil.oc.api.machine.Context;
public interface IThistleDevice {
public int lengthThistle();
public int readThistle(Context context, int address);
public void writeThistle(Context context, int address, int data);
}