11 lines
198 B
C#
11 lines
198 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace RoR2.DirectionalSearch;
|
||
|
|
||
|
public interface IGenericWorldSearchSelector<TSource>
|
||
|
{
|
||
|
Transform GetTransform(TSource source);
|
||
|
|
||
|
GameObject GetRootObject(TSource source);
|
||
|
}
|