using UnityEngine; namespace Beyond { public interface IPositionable { public Vector3 GetPosition(); public Quaternion GetRotation(); } }