Fix TrayScannerUser (#35959)

* Fix TrayScannerUser

* Ignore

* Update Content.Shared/SubFloor/TrayScannerUserComponent.cs

---------

Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
This commit is contained in:
metalgearsloth
2025-03-25 02:35:22 +11:00
committed by GitHub
parent 7c9e344cd2
commit 4f23016c72
2 changed files with 30 additions and 2 deletions

View File

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