2022-09-11 08:53:17 +02:00
|
|
|
using Content.Client.Tools.UI;
|
2021-10-07 13:01:27 +02:00
|
|
|
using Content.Shared.Tools.Components;
|
2020-05-11 15:26:07 +02:00
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Client.Tools.Components
|
2020-05-11 15:26:07 +02:00
|
|
|
{
|
2022-09-11 08:53:17 +02:00
|
|
|
[RegisterComponent, Access(typeof(ToolSystem), typeof(WelderStatusControl))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class WelderComponent : SharedWelderComponent
|
2020-05-11 15:26:07 +02:00
|
|
|
{
|
2021-10-07 13:01:27 +02:00
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
public bool UiUpdateNeeded { get; set; }
|
2020-05-11 15:26:07 +02:00
|
|
|
|
2021-10-07 13:01:27 +02:00
|
|
|
[ViewVariables]
|
|
|
|
|
public float FuelCapacity { get; set; }
|
2020-05-11 15:26:07 +02:00
|
|
|
|
2021-10-07 13:01:27 +02:00
|
|
|
[ViewVariables]
|
|
|
|
|
public float Fuel { get; set; }
|
2020-05-11 15:26:07 +02:00
|
|
|
}
|
|
|
|
|
}
|