1using UnityEngine; 2 3namespace Unity.VisualScripting 4{ 5 public interface IEventMachine : IMachine 6 { 7#if MODULE_ANIMATION_EXISTS 8 void TriggerAnimationEvent(AnimationEvent animationEvent); 9#endif 10 11 void TriggerUnityEvent(string name); 12 } 13}