using Content.Shared.Humanoid; namespace Content.Shared.Preferences { public interface ICharacterProfile { string Name { get; } ICharacterAppearance CharacterAppearance { get; } bool MemberwiseEquals(ICharacterProfile other); /// /// Makes this profile valid so there's no bad data like negative ages. /// void EnsureValid(); } }