Files
zeling_v2/Assets/PathBerserker2d/Scripts/PathBerserker2d/IVelocityProvider.cs
T
2026-05-08 11:04:00 +08:00

13 lines
240 B
C#

using UnityEngine;
namespace PathBerserker2d
{
public interface IVelocityProvider
{
/// <summary>
/// Current velocity relative to the world.
/// </summary>
Vector2 WorldVelocity { get; }
}
}