Files
BH3/Assets/Plugins/Assembly-CSharp-firstpass/BehaviorDesigner/Runtime/Tasks/EntryTask.cs
2025-08-13 09:26:42 +08:00

13 lines
269 B
C#

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