Files
OldThink/Content.Client/Storage/Systems/EntityStorageSystem.cs

14 lines
419 B
C#
Raw Normal View History

2023-08-31 18:32:03 +10:00
using System.Diagnostics.CodeAnalysis;
using Content.Shared.Storage.Components;
using Content.Shared.Storage.EntitySystems;
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);
}
}