ModernUO/Projects/UOContent/Mobiles/BehaviorTreeAI/ActionNode.cs
2021-09-01 01:07:24 -04:00

15 lines
299 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Server.Mobiles.BehaviorTreeAI
{
public abstract class ActionNode : LeafNode
{
public ActionNode(BehaviorTree tree) : base(tree)
{
}
}
}