6
StarHorizon_Public/Content.Shared/_White/Actions/PlasmaCostActionComponent.cs
2026-01-24 12:49:55 +03:00

15 lines
382 B
C#

using Content.Shared.FixedPoint;
using Robust.Shared.GameStates;
namespace Content.Shared._White.Actions;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class PlasmaCostActionComponent : Component
{
[DataField]
public bool ShouldChangePlasma = true;
[DataField, AutoNetworkedField]
public FixedPoint2 PlasmaCost = 50;
}