9 lines
222 B
C#
9 lines
222 B
C#
namespace Content.Server.CharacterAppearance.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed class RandomHumanoidAppearanceComponent : Component
|
|
{
|
|
[DataField("randomizeName")]
|
|
public bool RandomizeName = true;
|
|
}
|