forked from Shardstone/trail-into-darkness
11 lines
239 B
C#
11 lines
239 B
C#
#if UNITY_EDITOR
|
|
using UnityEditor;
|
|
#endif
|
|
|
|
namespace InspectorToolkit {
|
|
public interface IPropertyCondition {
|
|
#if UNITY_EDITOR
|
|
bool DoesPropertyMeetCondition(SerializedProperty property, out string description);
|
|
#endif
|
|
}
|
|
} |