2025-03-21 00:57:04 +11:00
|
|
|
namespace Content.Shared.SubFloor;
|
|
|
|
|
|
|
|
|
|
// Don't need to network
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Added to anyone using <see cref="TrayScannerComponent"/> to handle the vismask changes.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent]
|
2025-03-25 02:35:22 +11:00
|
|
|
public sealed partial class TrayScannerUserComponent : Component
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// How many t-rays the user is currently using.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[DataField]
|
|
|
|
|
public int Count;
|
|
|
|
|
}
|