OldBlueWater/BlueWater/Assets/Behavior Designer Movement/Scripts/GroupMovement.cs

11 lines
269 B
C#
Raw Normal View History

2023-09-26 06:12:44 +00:00
using UnityEngine;
namespace BehaviorDesigner.Runtime.Tasks.Movement
{
public abstract class GroupMovement : Action
{
protected abstract bool SetDestination(int index, Vector3 target);
protected abstract Vector3 Velocity(int index);
}
}