| 1234567891011121314151617181920 |
- namespace Content.Shared.Random;
- /// <summary>
- /// Budgeted random spawn entry.
- /// </summary>
- public interface IBudgetEntry : IProbEntry
- {
- float Cost { get; set; }
- string Proto { get; set; }
- }
- /// <summary>
- /// Random entry that has a prob. See <see cref="RandomSystem"/>
- /// </summary>
- public interface IProbEntry
- {
- float Prob { get; set; }
- }
|