Files
BH3/Assets/Scripts/Assembly-CSharp/MoleMole/Config/AnimatorEventDeadHandler.cs
2025-08-13 09:26:42 +08:00

11 lines
198 B
C#

namespace MoleMole.Config
{
public class AnimatorEventDeadHandler : AnimatorEvent
{
public override void HandleAnimatorEvent(BaseMonoAnimatorEntity entity)
{
entity.DeadHandler();
}
}
}