23 lines
443 B
C#
23 lines
443 B
C#
using System;
|
|
using NitroxModel.DataStructures;
|
|
using NitroxModel.Packets;
|
|
|
|
namespace NitroxModel_Subnautica.Packets
|
|
{
|
|
[Serializable]
|
|
public class CyclopsDecoyLaunch : Packet
|
|
{
|
|
public NitroxId Id { get; }
|
|
|
|
public CyclopsDecoyLaunch(NitroxId id)
|
|
{
|
|
Id = id;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"[CyclopsDecoyLaunch - Id: {Id}]";
|
|
}
|
|
}
|
|
}
|