ModernUO/Projects/UOContent/Mobiles/BT/Leaf/ActionNode.cs
2021-09-10 20:58:02 -04:00

15 lines
287 B
C#

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