mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 00:44:49 +01:00
13 lines
212 B
C#
13 lines
212 B
C#
namespace MoleMole.Config
|
|
{
|
|
public enum KillEffect
|
|
{
|
|
KillNow = 0,
|
|
KillFastWithDieAnim = 1,
|
|
KillFastWithNormalAnim = 2,
|
|
KillFastImmediately = 3,
|
|
KillImmediately = 4,
|
|
KillTillHitAnimationEnd = 5
|
|
}
|
|
}
|