mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Fixing jump in multiplayer, refactoring movement and animation systems for network and game layers * Fixing stamina dropping to 0 while running * Fixing some monsters getting stuck if they wakeup during idle emote * Reverting position * Fixing magic aftercast speed
18 lines
354 B
C#
18 lines
354 B
C#
using ACE.Entity.Enum;
|
|
|
|
namespace ACE.Server.Physics.Animation
|
|
{
|
|
public class MovementNode
|
|
{
|
|
public MovementType Type;
|
|
public float Heading;
|
|
|
|
public MovementNode() { }
|
|
|
|
public MovementNode(MovementType type, float heading = 0.0f)
|
|
{
|
|
Type = type;
|
|
Heading = heading;
|
|
}
|
|
}
|
|
}
|