mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* continuing to pull functions out of 1991 while retaining existing functionality * adding command descriptions * moving /debugcast and /recordcast to Developer commands
12 lines
237 B
C#
12 lines
237 B
C#
using ACE.Entity.Enum;
|
|
|
|
namespace ACE.Server.Physics.Command
|
|
{
|
|
public class CmdStruct
|
|
{
|
|
public uint[] Args = new uint[64];
|
|
public uint Size;
|
|
public uint Curr;
|
|
public MotionCommand Command;
|
|
}
|
|
}
|