add fuel costs back to finishing welding (#27030)

* add fuel costs back to welding

* ack

* meh

* eek!
This commit is contained in:
Nemanja
2024-04-19 19:20:30 -04:00
committed by GitHub
parent 299da35c87
commit a47c5561a9
26 changed files with 403 additions and 466 deletions

View File

@@ -1,18 +0,0 @@
using Content.Client.Tools.UI;
using Content.Shared.Tools.Components;
namespace Content.Client.Tools.Components
{
[RegisterComponent, Access(typeof(ToolSystem), typeof(WelderStatusControl))]
public sealed partial class WelderComponent : SharedWelderComponent
{
[ViewVariables(VVAccess.ReadWrite)]
public bool UiUpdateNeeded { get; set; }
[ViewVariables]
public float FuelCapacity { get; set; }
[ViewVariables]
public float Fuel { get; set; }
}
}