mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 00:34:44 +01:00
16 lines
380 B
C#
16 lines
380 B
C#
using Content.Client.Fluids.UI;
|
|
using Content.Client.Items;
|
|
using Content.Shared.Fluids;
|
|
|
|
namespace Content.Client.Fluids;
|
|
|
|
/// <inheritdoc/>
|
|
public sealed class AbsorbentSystem : SharedAbsorbentSystem
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
Subs.ItemStatus<AbsorbentComponent>(ent => new AbsorbentItemStatus(ent, EntityManager));
|
|
}
|
|
}
|