Co-authored-by: a.rudenko <creadth@gmail.com> Co-authored-by: creadth <creadth@users.noreply.github.com> Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com>
11 lines
280 B
C#
11 lines
280 B
C#
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Atmos.GasTank
|
|
{
|
|
public class SharedGasTankComponent : Component
|
|
{
|
|
public override string Name => "GasTank";
|
|
public override uint? NetID => ContentNetIDs.GAS_TANK;
|
|
}
|
|
}
|