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