mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
20 lines
451 B
C#
20 lines
451 B
C#
namespace ACE.Server.Physics.Animation
|
|
{
|
|
public class ActionNode
|
|
{
|
|
public uint Action;
|
|
public float Speed;
|
|
public int Stamp;
|
|
public bool Autonomous;
|
|
|
|
public ActionNode() { }
|
|
|
|
public ActionNode(uint action, float speed, int stamp, bool autonomous)
|
|
{
|
|
Action = action;
|
|
Speed = speed;
|
|
Stamp = stamp;
|
|
Autonomous = autonomous;
|
|
}
|
|
}
|
|
}
|