using Robust.Shared.Serialization; namespace Content.Shared.Preferences { /// /// Information needed for character setup. /// [Serializable, NetSerializable] public sealed class GameSettings { private int _maxCharacterSlots; public int MaxCharacterSlots { get => _maxCharacterSlots; set => _maxCharacterSlots = value; } } }