first commit
This commit is contained in:
19
NitroxModel/Packets/AttackCyclopsTargetChanged.cs
Normal file
19
NitroxModel/Packets/AttackCyclopsTargetChanged.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using NitroxModel.DataStructures;
|
||||
|
||||
namespace NitroxModel.Packets;
|
||||
|
||||
[Serializable]
|
||||
public class AttackCyclopsTargetChanged : Packet
|
||||
{
|
||||
public NitroxId CreatureId { get; }
|
||||
public NitroxId TargetId { get; }
|
||||
public float AggressiveToNoiseAmount { get; }
|
||||
|
||||
public AttackCyclopsTargetChanged(NitroxId creatureId, NitroxId targetId, float aggressiveToNoiseAmount)
|
||||
{
|
||||
CreatureId = creatureId;
|
||||
TargetId = targetId;
|
||||
AggressiveToNoiseAmount = aggressiveToNoiseAmount;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user