electrodynamics/electrical/src/main/scala/resonantinduction/electrical/armbot/task/TaskStart.java

25 lines
476 B
Java
Raw Normal View History

2014-01-11 10:44:07 +01:00
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();
}
}