resonant-induction/src/main/java/resonantinduction/mechanics/armbot/command/TaskStart.java

25 lines
477 B
Java
Raw Normal View History

2014-01-08 15:18:24 +01:00
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();
}
}