com.github.thehilikus.jrobocom.events.RobotChangedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jrobocom-core Show documentation
Show all versions of jrobocom-core Show documentation
The game core infrastructure
package com.github.thehilikus.jrobocom.events;
import com.github.thehilikus.jrobocom.robot.Robot;
/**
* Event to mark the change in one of the robot's attributes
*
* @author hilikus
*/
public class RobotChangedEvent extends RobotEvent {
private static final long serialVersionUID = 207547744025667582L;
/**
* Main constructor
*
* @param source the robot that changed
*/
public RobotChangedEvent(Robot source) {
super(source);
}
}