- Change namespace, and folder of FancyWindow to Content.Client.UserInterface.Controls - Change xaml reference from ui to controls in some places - Change ClientAlertsSystem from internal to public - Change namespace, and folder of HighDivider to Content.Client.UserInterface.Controls
21 lines
527 B
C#
21 lines
527 B
C#
using Content.Client.Hands.UI;
|
|
using Content.Client.Items;
|
|
using Content.Shared.Hands;
|
|
using Content.Shared.Hands.Components;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Client.Hands.Systems
|
|
{
|
|
[UsedImplicitly]
|
|
public sealed class HandVirtualItemSystem : SharedHandVirtualItemSystem
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
|
|
Subs.ItemStatus<HandVirtualItemComponent>(_ => new HandVirtualItemStatus());
|
|
}
|
|
}
|
|
}
|