electrodynamics/electrical/src/main/scala/resonantinduction/electrical/armbot/task/TaskStart.java
2014-03-23 17:19:47 +08:00

25 lines
476 B
Java

package resonantinduction.electrical.armbot.task;
import resonantinduction.electrical.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();
}
}