13 lines
164 B
C#
13 lines
164 B
C#
|
using JetBrains.Annotations;
|
||
|
using RoR2.UI;
|
||
|
|
||
|
namespace RoR2;
|
||
|
|
||
|
public interface IInspectInfoProvider
|
||
|
{
|
||
|
bool CanBeInspected();
|
||
|
|
||
|
[NotNull]
|
||
|
InspectInfo GetInfo();
|
||
|
}
|