11 lines
218 B
C#
11 lines
218 B
C#
|
|
using Robust.Shared.Prototypes;
|
||
|
|
|
||
|
|
namespace Content.Shared._White.Chaplain;
|
||
|
|
|
||
|
|
[RegisterComponent]
|
||
|
|
public sealed partial class NullRodComponent : Component
|
||
|
|
{
|
||
|
|
[DataField]
|
||
|
|
public List<EntProtoId> Weapons = new();
|
||
|
|
}
|