13 lines
278 B
C#
13 lines
278 B
C#
namespace BehaviorDesigner.Runtime.Tasks
|
|
{
|
|
[HelpURLAttribute("http://www.opsive.com/assets/BehaviorDesigner/documentation.php?id=23")]
|
|
[TaskIcon("{SkinColor}EntryIcon.png")]
|
|
public class EntryTask : ParentTask
|
|
{
|
|
public override int MaxChildren()
|
|
{
|
|
return 1;
|
|
}
|
|
}
|
|
}
|