using System; using UnityEngine; using UnityEngine.Splines; namespace DDD.Restaurant { public enum PointType { Entry, Exit, } public interface IEnvironmentPointProvider { bool IsSupportsType(PointType pointType); Vector3 GetPosition(); GameObject GetGameObject(); } }