17 lines
351 B
C#
17 lines
351 B
C#
using Content.Shared._DV.AACTablet;
|
|
|
|
namespace Content.Client._DV.AACTablet.UI;
|
|
|
|
public sealed partial class AACBoundUserInterface
|
|
{
|
|
protected override void UpdateState(BoundUserInterfaceState state)
|
|
{
|
|
base.UpdateState(state);
|
|
|
|
if (state is not AACTabletBuiState msg)
|
|
return;
|
|
|
|
_window?.Update(msg);
|
|
}
|
|
}
|