20 lines
342 B
C#
20 lines
342 B
C#
|
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();
|
||
|
}
|
||
|
}
|