Files
tbd-station-14/Content.Shared/SubFloor/TrayScannerUserComponent.cs
metalgearsloth 4f23016c72 Fix TrayScannerUser (#35959)
* Fix TrayScannerUser

* Ignore

* Update Content.Shared/SubFloor/TrayScannerUserComponent.cs

---------

Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
2025-03-24 16:35:22 +01:00

16 lines
399 B
C#

namespace Content.Shared.SubFloor;
// Don't need to network
/// <summary>
/// Added to anyone using <see cref="TrayScannerComponent"/> to handle the vismask changes.
/// </summary>
[RegisterComponent]
public sealed partial class TrayScannerUserComponent : Component
{
/// <summary>
/// How many t-rays the user is currently using.
/// </summary>
[DataField]
public int Count;
}