11 lines
247 B
C#
11 lines
247 B
C#
namespace Content.Shared._White.GhostRecruitment;
|
|
|
|
|
|
// this for spawned prototype
|
|
[RegisterComponent]
|
|
public sealed partial class RecruitedComponent : Component
|
|
{
|
|
[DataField("recruitmentName")]
|
|
public string RecruitmentName = "default";
|
|
}
|