14 lines
325 B
C#
14 lines
325 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<LoadoutPrototype> Prototype;
|
||
|
|
}
|