15 lines
268 B
C#
Raw Permalink Normal View History

2025-09-19 19:43:49 +05:00
// Triggers that drive transitions between states.
namespace BulletHellTemplate.Core.FSM
{
public enum AnimationEvent
{
OnMove,
OnStopMove,
OnAttack,
OnSkill,
OnSkillEnded,
OnReceiveDamage,
OnDie
}
}