first commit
This commit is contained in:
17
NitroxModel/Packets/CreatureActionChanged.cs
Normal file
17
NitroxModel/Packets/CreatureActionChanged.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using NitroxModel.DataStructures;
|
||||
|
||||
namespace NitroxModel.Packets;
|
||||
|
||||
[Serializable]
|
||||
public sealed class CreatureActionChanged : Packet
|
||||
{
|
||||
public NitroxId CreatureId { get; }
|
||||
public string CreatureActionType { get; }
|
||||
|
||||
public CreatureActionChanged(NitroxId creatureId, string creatureActionType)
|
||||
{
|
||||
CreatureId = creatureId;
|
||||
CreatureActionType = creatureActionType;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user