2023-08-31 18:32:03 +10:00
|
|
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
|
|
using Content.Shared.Storage.Components;
|
|
|
|
|
|
using Content.Shared.Storage.EntitySystems;
|
2023-02-26 07:44:30 -05:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Storage.Systems;
|
|
|
|
|
|
|
|
|
|
|
|
public sealed class EntityStorageSystem : SharedEntityStorageSystem
|
|
|
|
|
|
{
|
2023-08-31 18:32:03 +10:00
|
|
|
|
public override bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref SharedEntityStorageComponent? component)
|
|
|
|
|
|
{
|
|
|
|
|
|
return Resolve(uid, ref component);
|
|
|
|
|
|
}
|
2023-02-26 07:44:30 -05:00
|
|
|
|
}
|