Files
MRCS/Assets/Plugins/Behavior Designer/Runtime/BehaviorTree.cs
2025-10-31 12:25:48 +08:00

11 lines
243 B
C#

using UnityEngine;
namespace BehaviorDesigner.Runtime
{
// Wrapper for the Behavior class
[AddComponentMenu("Behavior Designer/Behavior Tree")]
public class BehaviorTree : Behavior
{
// intentionally left blank
}
}