mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
19 lines
549 B
C#
19 lines
549 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Body;
|
|
|
|
/// <summary>
|
|
/// On map initialization, spawns the given organs into the body.
|
|
/// Liable to change as the body becomes more complex.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
[Access(typeof(InitialBodySystem))]
|
|
public sealed partial class InitialBodyComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The organs to spawn based on their category.
|
|
/// </summary>
|
|
[DataField(required: true)]
|
|
public Dictionary<ProtoId<OrganCategoryPrototype>, EntProtoId<OrganComponent>> Organs;
|
|
}
|