mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-19 09:54:46 +01:00
13 lines
269 B
C#
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;
|
|
}
|
|
}
|
|
}
|