10 lines
169 B
C#
10 lines
169 B
C#
using UnityEngine;
|
|
|
|
namespace Beyond
|
|
{
|
|
public interface IPositionable
|
|
{
|
|
public Vector3 GetPosition();
|
|
public Quaternion GetRotation();
|
|
}
|
|
} |