first commit
This commit is contained in:
23
NitroxModel-Subnautica/Packets/CyclopsFireSuppression.cs
Normal file
23
NitroxModel-Subnautica/Packets/CyclopsFireSuppression.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using NitroxModel.DataStructures;
|
||||
using NitroxModel.Packets;
|
||||
|
||||
namespace NitroxModel_Subnautica.Packets
|
||||
{
|
||||
[Serializable]
|
||||
public class CyclopsFireSuppression : Packet
|
||||
{
|
||||
public NitroxId Id { get; }
|
||||
|
||||
public CyclopsFireSuppression(NitroxId id)
|
||||
{
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"[CyclopsFireSuppressionSystem - Id: {Id}]";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user