LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/EnemyAnimationEvent.cs

17 lines
231 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
using UnityEngine;
public class EnemyAnimationEvent : MonoBehaviour
{
public EnemyAI mainScript;
public void PlayEventA()
{
mainScript.AnimationEventA();
}
public void PlayEventB()
{
mainScript.AnimationEventB();
}
}