22 lines
706 B
C#
22 lines
706 B
C#
using Content.Shared.Disposal.Components;
|
|
using Content.Shared.DragDrop;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.Disposal.Components
|
|
{
|
|
[RegisterComponent]
|
|
[ComponentReference(typeof(SharedDisposalUnitComponent))]
|
|
public sealed class DisposalUnitComponent : SharedDisposalUnitComponent
|
|
{
|
|
public DisposalUnitBoundUserInterfaceState? UiState;
|
|
|
|
public override void HandleComponentState(ComponentState? curState, ComponentState? nextState)
|
|
{
|
|
base.HandleComponentState(curState, nextState);
|
|
if (curState is not DisposalUnitComponentState state) return;
|
|
|
|
RecentlyEjected = state.RecentlyEjected;
|
|
}
|
|
}
|
|
}
|