26 lines
573 B
C#
26 lines
573 B
C#
#region Header
|
|
// _,-'/-'/
|
|
// . __,-; ,'( '/
|
|
// \. `-.__`-._`:_,-._ _ , . ``
|
|
// `:-._,------' ` _,`--` -: `_ , ` ,' :
|
|
// `---..__,,--' (C) 2023 ` -'. -'
|
|
// # Vita-Nex [http://core.vita-nex.com] #
|
|
// {o)xxx|===============- # -===============|xxx(o}
|
|
// # #
|
|
#endregion
|
|
|
|
namespace Server
|
|
{
|
|
public enum AttackAnimation
|
|
{
|
|
Slash1H = 9,
|
|
Pierce1H = 10,
|
|
Bash1H = 11,
|
|
Bash2H = 12,
|
|
Slash2H = 13,
|
|
Pierce2H = 14,
|
|
ShootBow = 18,
|
|
ShootXBow = 19,
|
|
Wrestle = 31
|
|
}
|
|
} |