2021-07-31 03:14:00 +02:00
|
|
|
|
using Content.Client.Items;
|
2022-01-01 05:20:32 -08:00
|
|
|
|
using Content.Shared.Hands;
|
2021-07-31 03:14:00 +02:00
|
|
|
|
using Content.Shared.Hands.Components;
|
|
|
|
|
|
using JetBrains.Annotations;
|
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
2021-09-17 07:16:11 -07:00
|
|
|
|
namespace Content.Client.Hands.Systems
|
2021-07-31 03:14:00 +02:00
|
|
|
|
{
|
|
|
|
|
|
[UsedImplicitly]
|
2022-01-01 05:20:32 -08:00
|
|
|
|
public sealed class HandVirtualItemSystem : SharedHandVirtualItemSystem
|
2021-07-31 03:14:00 +02:00
|
|
|
|
{
|
|
|
|
|
|
public override void Initialize()
|
|
|
|
|
|
{
|
|
|
|
|
|
base.Initialize();
|
|
|
|
|
|
|
2021-09-17 07:16:11 -07:00
|
|
|
|
Subs.ItemStatus<HandVirtualItemComponent>(_ => new HandVirtualItemStatus());
|
2021-07-31 03:14:00 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|