mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
20 lines
449 B
C#
20 lines
449 B
C#
using ACE.Entity.Enum;
|
|
|
|
namespace ACE.Server.Physics.Animation
|
|
{
|
|
public class MotionNode
|
|
{
|
|
public int ContextID;
|
|
public uint Motion;
|
|
public WeenieError JumpErrorCode;
|
|
|
|
public MotionNode() { }
|
|
|
|
public MotionNode(int contextID, uint motion, WeenieError jumpErrorCode)
|
|
{
|
|
ContextID = contextID;
|
|
Motion = motion;
|
|
JumpErrorCode = jumpErrorCode;
|
|
}
|
|
}
|
|
}
|