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

17 lines
518 B
C#
Raw Normal View History

2021-06-09 22:19:39 +02:00
using Content.Shared.Stacks;
using Robust.Shared.Analyzers;
using Robust.Shared.GameObjects;
using Robust.Shared.ViewVariables;
2021-06-09 22:19:39 +02:00
namespace Content.Server.Stack
{
// TODO: Naming and presentation and such could use some improvement.
[RegisterComponent, Friend(typeof(StackSystem))]
[ComponentReference(typeof(SharedStackComponent))]
2021-05-26 10:32:40 +02:00
public class StackComponent : SharedStackComponent
{
[ViewVariables(VVAccess.ReadWrite)]
public bool ThrowIndividually { get; set; } = false;
}
}