2023-02-11 12:38:45 +11:00
|
|
|
using Content.Client.Fluids.UI;
|
|
|
|
|
using Content.Client.Items;
|
|
|
|
|
using Content.Shared.Fluids;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Fluids;
|
|
|
|
|
|
2023-04-10 15:37:03 +10:00
|
|
|
/// <inheritdoc/>
|
|
|
|
|
public sealed class AbsorbentSystem : SharedAbsorbentSystem
|
2023-02-11 12:38:45 +11:00
|
|
|
{
|
|
|
|
|
public override void Initialize()
|
|
|
|
|
{
|
|
|
|
|
base.Initialize();
|
2024-01-12 01:14:13 +01:00
|
|
|
Subs.ItemStatus<AbsorbentComponent>(ent => new AbsorbentItemStatus(ent, EntityManager));
|
2023-02-11 12:38:45 +11:00
|
|
|
}
|
|
|
|
|
}
|