Files
Nitrox/NitroxModel/Packets/AnimationChangeEvent.cs
2025-07-06 00:23:46 +02:00

20 lines
417 B
C#

using System;
namespace NitroxModel.Packets
{
[Serializable]
public class AnimationChangeEvent : Packet
{
public ushort PlayerId { get; }
public int Type { get; }
public int State { get; }
public AnimationChangeEvent(ushort playerId, int type, int state)
{
PlayerId = playerId;
Type = type;
State = state;
}
}
}