2024-08-09 22:12:40 -04:00
|
|
|
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
|
|
|
|
|
{
|
2025-04-14 14:02:49 -07:00
|
|
|
public abstract int Get(System.Random rand);
|
2024-08-09 22:12:40 -04:00
|
|
|
}
|