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