15 lines
280 B
C#
15 lines
280 B
C#
using System;
|
|
|
|
namespace NitroxModel.Packets;
|
|
|
|
[Serializable]
|
|
public class KeepInventoryChanged : Packet
|
|
{
|
|
public bool KeepInventoryOnDeath { get; }
|
|
|
|
public KeepInventoryChanged(bool keepInventoryOnDeath)
|
|
{
|
|
KeepInventoryOnDeath = keepInventoryOnDeath;
|
|
}
|
|
}
|