22 lines
576 B
C#
22 lines
576 B
C#
using Content.Shared.Dataset;
|
|
using Content.Shared.Humanoid.Prototypes;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Random;
|
|
|
|
namespace Content.Shared.Humanoid
|
|
{
|
|
// You need to update profile, profile editor, maybe voices and names if you want to expand this further.
|
|
public enum Sex : byte
|
|
{
|
|
Male,
|
|
Female,
|
|
Unsexed,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Raised when entity has changed their sex.
|
|
/// This doesn't handle gender changes.
|
|
/// </summary>
|
|
public record struct SexChangedEvent(Sex OldSex, Sex NewSex);
|
|
}
|