mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
* initial visual nubody * oops overlay * im so pheeming rn * conversion... * tests * comeback of the underwear * oops eyes * blabbl * zeds * yaml linted * search and visible count constraints * reordering * preserve previously selected markings colors * fix test * some ui niceties * ordering * make DB changes backwards-compatible/downgrade-friendly * fix things again * fix migration * vulpkanin markings limit increase * wrapping * code cleanup and more code cleanup and more code cleanup and more code cleanup and * fix slop ports * better sampling API * make filter work + use the method i made for its intended purpose * fix test fails real quick * magic mirror cleanup, remove TODO * don't 0-init the organ profile data * remove deltastates --------- Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com>
28 lines
784 B
C#
28 lines
784 B
C#
using Content.Shared.Humanoid.Prototypes;
|
|
using Content.Shared.Preferences;
|
|
using Robust.Shared.Enums;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Humanoid;
|
|
|
|
/// <summary>
|
|
/// Dictates what species and age this character "looks like"
|
|
/// </summary>
|
|
[NetworkedComponent, RegisterComponent, AutoGenerateComponentState(true)]
|
|
[Access(typeof(HumanoidProfileSystem))]
|
|
public sealed partial class HumanoidProfileComponent : Component
|
|
{
|
|
[DataField, AutoNetworkedField]
|
|
public Gender Gender;
|
|
|
|
[DataField, AutoNetworkedField]
|
|
public Sex Sex;
|
|
|
|
[DataField, AutoNetworkedField]
|
|
public int Age = 18;
|
|
|
|
[DataField, AutoNetworkedField]
|
|
public ProtoId<SpeciesPrototype> Species = HumanoidCharacterProfile.DefaultSpecies;
|
|
}
|