Files
tbd-station-14/Content.Shared/GameTicking/Rules/DynamicRuleCostComponent.cs
2025-08-15 16:06:51 +02:00

15 lines
360 B
C#

namespace Content.Shared.GameTicking.Rules;
/// <summary>
/// Component that tracks how much a rule "costs" for Dynamic
/// </summary>
[RegisterComponent]
public sealed partial class DynamicRuleCostComponent : Component
{
/// <summary>
/// The amount of budget a rule takes up
/// </summary>
[DataField(required: true)]
public int Cost;
}