Move SleepingSystem to Shared & cleanup (#28672)

* Move SleepingSystem to Shared & cleanup

* Remove empty OnShutdown handler
This commit is contained in:
Tayrtahn
2024-06-13 22:15:29 -04:00
committed by GitHub
parent c79849ae29
commit 6c343ddae2
8 changed files with 339 additions and 366 deletions

View File

@@ -0,0 +1,12 @@
using Robust.Shared.GameStates;
namespace Content.Shared.Bed.Sleep;
/// <summary>
/// This is used for the snoring trait.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed partial class SnoringComponent : Component
{
}