first commit
This commit is contained in:
19
NitroxModel/Packets/AnimationChangeEvent.cs
Normal file
19
NitroxModel/Packets/AnimationChangeEvent.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user