blob: 61aade1ad0477510351900df120610aac336ca3a [file] [log] [blame] [raw]
package li.cil.oc.api.event;
import li.cil.oc.api.machine.Robot;
import net.minecraft.entity.player.EntityPlayer;
/**
* Fired when an analyzer is used on a robot.
* <p/>
* Use this to echo additional information for custom components.
*/
public class RobotAnalyzeEvent extends RobotEvent {
/**
* The player that used the analyzer.
*/
public final EntityPlayer player;
public RobotAnalyzeEvent(Robot robot, EntityPlayer player) {
super(robot);
this.player = player;
}
}