Files
tbd-station-14/Content.Shared/Random/IBudgetEntry.cs
2023-09-19 22:52:01 +10:00

21 lines
361 B
C#

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; }
}