namespace Content.Shared.Random; /// /// Budgeted random spawn entry. /// public interface IBudgetEntry : IProbEntry { float Cost { get; set; } string Proto { get; set; } } /// /// Random entry that has a prob. See /// public interface IProbEntry { float Prob { get; set; } }