2021-06-09 22:19:39 +02:00
|
|
|
using Content.Client.Items.Components;
|
|
|
|
|
using Content.Client.Message;
|
|
|
|
|
using Content.Client.Stylesheets;
|
|
|
|
|
using Content.Shared.Stacks;
|
2020-01-09 00:27:52 +01:00
|
|
|
using Robust.Client.UserInterface;
|
|
|
|
|
using Robust.Client.UserInterface.Controls;
|
|
|
|
|
using Robust.Shared.Timing;
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Client.Stack
|
2020-01-09 00:27:52 +01:00
|
|
|
{
|
2022-09-11 08:53:17 +02:00
|
|
|
[RegisterComponent, Access(typeof(StackSystem), typeof(StackStatusControl))]
|
2020-10-08 17:41:23 +02:00
|
|
|
[ComponentReference(typeof(SharedStackComponent))]
|
2022-09-11 08:53:17 +02:00
|
|
|
public sealed class StackComponent : SharedStackComponent
|
2020-01-09 00:27:52 +01:00
|
|
|
{
|
2021-08-30 11:49:09 +02:00
|
|
|
[ViewVariables]
|
|
|
|
|
public bool UiUpdateNeeded { get; set; }
|
2020-01-09 00:27:52 +01:00
|
|
|
}
|
2021-02-28 20:02:03 -04:00
|
|
|
}
|