Files
14 lines
329 B
C#
14 lines
329 B
C#
using Robust.Shared.Prototypes;
|
|||
using Robust.Shared.Serialization;
|
|||
|
|||
namespace Content.Shared.Preferences.Loadouts;
|
|||
|
|||
/// <summary>
|
|||
/// Specifies the selected prototype and custom data for a loadout.
|
|||
/// </summary>
|
|||
[Serializable, NetSerializable]
|
|||
public sealed class Loadout
|
|||
{
|
|||
public ProtoId<ItemLoadoutPrototype> Prototype;
|
|||
}
|