Files
tbd-station-14/Content.Server/Mousetrap/MousetrapComponent.cs
potato1234_x f4bbe3603d Add trash carts and janitorial trash carts (#18996)
* everything

* half loot
2023-08-12 13:05:32 -06:00

20 lines
482 B
C#

namespace Content.Server.Mousetrap;
[RegisterComponent]
public sealed class MousetrapComponent : Component
{
[ViewVariables]
[DataField("isActive")]
public bool IsActive = false;
/// <summary>
/// Set this to change where the
/// inflection point in the scaling
/// equation will occur.
/// The default is 10.
/// </summary>
[ViewVariables(VVAccess.ReadWrite)]
[DataField("massBalance")]
public int MassBalance = 10;
}