Files
OldThink/Content.Client/Stack/StackComponent.cs

19 lines
558 B
C#
Raw Normal View History

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))]
[ComponentReference(typeof(SharedStackComponent))]
2022-09-11 08:53:17 +02:00
public sealed class StackComponent : SharedStackComponent
2020-01-09 00:27:52 +01:00
{
[ViewVariables]
public bool UiUpdateNeeded { get; set; }
2020-01-09 00:27:52 +01:00
}
2021-02-28 20:02:03 -04:00
}