using Robust.Shared.Prototypes; namespace Content.Shared.Random; /// /// Generic random weighting dataset to use. /// [Prototype("weightedRandom")] public sealed partial class WeightedRandomPrototype : IWeightedRandomPrototype { [IdDataField] public string ID { get; private set; } = default!; [DataField("weights")] public Dictionary Weights { get; private set; } = new(); }