Files
tbd-station-14/Content.Shared/EntityTable/ValueSelector/NumberSelector.cs
ArtisticRoomba 6c2c5935ed fix RangeNumberSelector to actually be inclusive (#36155)
* fix RangeNumberSelector to actually be inclusive

* Convert all random number stuff to randomint and prune unused code

* another heisentest???

* another heisentest after a heisentest. im going to lose it.
2025-04-14 17:02:49 -04:00

14 lines
440 B
C#

using Content.Shared.EntityTable.EntitySelectors;
using JetBrains.Annotations;
namespace Content.Shared.EntityTable.ValueSelector;
/// <summary>
/// Used for implementing custom value selection for <see cref="EntityTableSelector"/>
/// </summary>
[ImplicitDataDefinitionForInheritors, UsedImplicitly(ImplicitUseTargetFlags.WithInheritors)]
public abstract partial class NumberSelector
{
public abstract int Get(System.Random rand);
}