fish-station/Content.Shared/Humanoid/Sex.cs
Alex Evgrashin ef452b38a9
Audible emotes (#12708)
Co-authored-by: Visne <39844191+Visne@users.noreply.github.com>
2023-01-25 08:29:41 -08:00

21 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);
}