10 lines
149 B
C#
10 lines
149 B
C#
using UnityEngine;
|
|
|
|
namespace RTG
|
|
{
|
|
public interface IHoverableSceneEntityContainer
|
|
{
|
|
bool HasHoveredSceneEntity { get; }
|
|
}
|
|
}
|