forked from Shardstone/trail-into-darkness
11 lines
214 B
C#
11 lines
214 B
C#
#if UNITY_EDITOR
|
|
using UnityEditor;
|
|
#endif
|
|
|
|
namespace Jovian.InspectorTools {
|
|
public interface IActionableAttribute {
|
|
#if UNITY_EDITOR
|
|
void Trigger(SerializedProperty serializedProperty);
|
|
#endif
|
|
}
|
|
} |