blob: 3299e226b081e12e4932830cd6b0aaec5b1abd2d [file] [log] [blame] [raw]
package li.cil.oc.api.event;
import cpw.mods.fml.common.eventhandler.Event;
import li.cil.oc.api.tileentity.Robot;
/**
* Base class for events generated by robots.
*/
public abstract class RobotEvent extends Event {
/**
* The robot for which this event was fired.
*/
public final Robot robot;
protected RobotEvent(Robot robot) {
this.robot = robot;
}
}