9 lines
127 B
C#
9 lines
127 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace DDD
|
||
|
|
{
|
||
|
|
public interface ICurrentDirection
|
||
|
|
{
|
||
|
|
Vector3 GetCurrentDirection();
|
||
|
|
}
|
||
|
|
}
|