2021-06-09 22:19:39 +02:00
|
|
|
using Content.Shared.Stacks;
|
2021-08-30 11:49:09 +02:00
|
|
|
using Robust.Shared.Analyzers;
|
2019-04-15 21:11:38 -06:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.ViewVariables;
|
2018-08-02 08:29:55 +02:00
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Server.Stack
|
2018-08-02 08:29:55 +02:00
|
|
|
{
|
|
|
|
|
// TODO: Naming and presentation and such could use some improvement.
|
2021-08-30 11:49:09 +02:00
|
|
|
[RegisterComponent, Friend(typeof(StackSystem))]
|
2020-10-08 17:41:23 +02:00
|
|
|
[ComponentReference(typeof(SharedStackComponent))]
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class StackComponent : SharedStackComponent
|
2018-08-02 08:29:55 +02:00
|
|
|
{
|
2020-02-13 22:43:02 +00:00
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
2021-05-26 10:20:57 +02:00
|
|
|
public bool ThrowIndividually { get; set; } = false;
|
2018-08-02 08:29:55 +02:00
|
|
|
}
|
|
|
|
|
}
|