Entity storage now holds air (#11355)

This commit is contained in:
Kara
2022-09-16 11:46:09 -07:00
committed by GitHub
parent edd41c04e0
commit 4e5def0d03
3 changed files with 112 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
namespace Content.Server.Storage.Components;
/// <summary>
/// Added to entities contained within entity storage, for directed event purposes.
/// </summary>
[RegisterComponent]
public sealed class InsideEntityStorageComponent : Component
{
public EntityUid Storage;
}