Re-organize all projects (#4166)
This commit is contained in:
15
Content.Server/Stack/StackComponent.cs
Normal file
15
Content.Server/Stack/StackComponent.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Content.Shared.Stacks;
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.ViewVariables;
|
||||
|
||||
namespace Content.Server.Stack
|
||||
{
|
||||
// TODO: Naming and presentation and such could use some improvement.
|
||||
[RegisterComponent]
|
||||
[ComponentReference(typeof(SharedStackComponent))]
|
||||
public class StackComponent : SharedStackComponent
|
||||
{
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
public bool ThrowIndividually { get; set; } = false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user