* Fix TrayScannerUser * Ignore * Update Content.Shared/SubFloor/TrayScannerUserComponent.cs --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
16 lines
399 B
C#
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;
|
|
}
|