move lockcomponent to shared (#13722)
* move lockcomponent to shared * ajcm review
This commit is contained in:
25
Content.Shared/Storage/Components/SharedEntityStorage.cs
Normal file
25
Content.Shared/Storage/Components/SharedEntityStorage.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
namespace Content.Shared.Storage.Components;
|
||||
|
||||
[ByRefEvent]
|
||||
public record struct InsertIntoEntityStorageAttemptEvent(bool Cancelled = false);
|
||||
|
||||
[ByRefEvent]
|
||||
public record struct StoreMobInItemContainerAttemptEvent(bool Handled, bool Cancelled = false);
|
||||
|
||||
[ByRefEvent]
|
||||
public record struct StorageOpenAttemptEvent(bool Silent, bool Cancelled = false);
|
||||
|
||||
[ByRefEvent]
|
||||
public readonly record struct StorageBeforeOpenEvent;
|
||||
|
||||
[ByRefEvent]
|
||||
public readonly record struct StorageAfterOpenEvent;
|
||||
|
||||
[ByRefEvent]
|
||||
public record struct StorageCloseAttemptEvent(bool Cancelled = false);
|
||||
|
||||
[ByRefEvent]
|
||||
public readonly record struct StorageBeforeCloseEvent(HashSet<EntityUid> Contents, HashSet<EntityUid> BypassChecks);
|
||||
|
||||
[ByRefEvent]
|
||||
public readonly record struct StorageAfterCloseEvent;
|
||||
Reference in New Issue
Block a user