2
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
391 B
C#

using UnityEngine.Events;
namespace CleverCrow.Fluid.BTs.Tasks {
/// <summary>
/// A bundle of editor utilities that are for data visualization only.
/// Unsafe to call outside of #if UNITY_EDITOR methods and non-performant for normal runtime
/// </summary>
public class EditorRuntimeUtilities {
public readonly UnityEvent EventActive = new UnityEvent();
}
}