2022-07-25 14:42:25 +10:00
|
|
|
|
namespace Content.Server.Body.Components
|
2020-10-27 20:53:44 +01:00
|
|
|
|
{
|
2022-07-25 14:42:25 +10:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Handles hooking up a mask (breathing tool) / gas tank together and allowing the Owner to breathe through it.
|
|
|
|
|
|
/// </summary>
|
2020-10-27 20:53:44 +01:00
|
|
|
|
[RegisterComponent]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class InternalsComponent : Component
|
2020-10-27 20:53:44 +01:00
|
|
|
|
{
|
2021-12-26 15:32:45 +13:00
|
|
|
|
[ViewVariables] public EntityUid? GasTankEntity { get; set; }
|
|
|
|
|
|
[ViewVariables] public EntityUid? BreathToolEntity { get; set; }
|
2020-10-27 20:53:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|