Files
tbd-station-14/Content.Shared/Ame/Components/AmeFuelContainerComponent.cs
Nemanja ed7f00692e The real AME nerf (#29587)
* The real AME nerf

* oh the real change

* Update AmeNodeGroup.cs
2024-07-08 00:27:52 +10:00

20 lines
595 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Ame.Components;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class AmeFuelContainerComponent : Component
{
/// <summary>
/// The amount of fuel in the container.
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField]
public int FuelAmount = 500;
/// <summary>
/// The maximum fuel capacity of the container.
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField]
public int FuelCapacity = 500;
}