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