fish-station/Content.Server/SubFloor/TrayScannerSystem.cs
Leon Friedrich 4ed7ec9419
Fix T-ray scanner PVS issues (#6554)
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
2022-02-11 16:00:33 -07:00

11 lines
213 B
C#

using Content.Shared.SubFloor;
namespace Content.Server.SubFloor;
public sealed class TrayScannerSystem : SharedTrayScannerSystem
{
public override void Initialize()
{
base.Initialize();
}
}