first commit
This commit is contained in:
16
NitroxModel-Subnautica/Packets/RocketLaunch.cs
Normal file
16
NitroxModel-Subnautica/Packets/RocketLaunch.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using NitroxModel.DataStructures;
|
||||
using NitroxModel.Packets;
|
||||
|
||||
namespace NitroxModel_Subnautica.Packets;
|
||||
|
||||
[Serializable]
|
||||
public class RocketLaunch : Packet
|
||||
{
|
||||
public NitroxId RocketId { get; }
|
||||
|
||||
public RocketLaunch(NitroxId rocketId)
|
||||
{
|
||||
RocketId = rocketId;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user