9 lines
155 B
C#
9 lines
155 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace BlueWater.Interfaces
|
|||
|
{
|
|||
|
public interface ICurrentDirection
|
|||
|
{
|
|||
|
Vector3 CurrentDirection { get; set; }
|
|||
|
}
|
|||
|
}
|