resonant-induction/src/main/java/resonantinduction/mechanics/armbot/command/TaskStart.java
2014-01-08 22:18:24 +08:00

24 lines
477 B
Java

package resonantinduction.mechanics.armbot.command;
import resonantinduction.mechanics.armbot.TaskBase;
/**
* Fake task as the player can not create, edit, or do anything with this task. Its only used to
* allow the gui to render the task as an actual task instance
*
* @author DarkGaurdsman
*/
public class TaskStart extends TaskBase
{
public TaskStart()
{
super("Start", TaskType.START);
}
@Override
public TaskBase clone()
{
return new TaskStart();
}
}