CapersProject/Assets/02.Scripts/BlueWater/Interface/ICurrentDirection.cs
2025-02-10 11:13:46 +09:00

9 lines
149 B
C#

using UnityEngine;
namespace DDD.Interfaces
{
public interface ICurrentDirection
{
Vector3 CurrentDirection { get; set; }
}
}