Files
tbd-station-14/Content.Shared/Inventory/InventoryComponent.cs
2022-04-03 02:01:22 +02:00

10 lines
342 B
C#

using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Shared.Inventory;
public abstract class InventoryComponent : Component
{
[DataField("templateId", customTypeSerializer: typeof(PrototypeIdSerializer<InventoryTemplatePrototype>))]
public string TemplateId { get; } = "human";
}