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