Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Content.Shared._DV.Salvage;
using Content.Shared.DeltaV.Salvage;
using Robust.Client.UserInterface;

namespace Content.Client._DV.Salvage.UI;
namespace Content.Client.DeltaV.Salvage.UI;

public sealed class MiningVoucherBoundUserInterface : BoundUserInterface
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
using Content.Client.UserInterface.Controls;
using Content.Shared._DV.Salvage.Components;
using Robust.Client.AutoGenerated;
using Robust.Client.GameObjects;
using Robust.Client.UserInterface;
using Robust.Client.UserInterface.Controls;
using Robust.Client.UserInterface.XAML;
using Robust.Shared.Prototypes;
using System.Numerics;
using Content.Shared.DeltaV.Salvage.Components;

namespace Content.Client._DV.Salvage.UI;
namespace Content.Client.DeltaV.Salvage.UI;

[GenerateTypedNameReferences]
public sealed partial class MiningVoucherMenu : RadialMenu
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Robust.Client.UserInterface;
using Robust.Shared.Input;
using Content.Client.UserInterface.Controls;
using Content.Shared._DV.SmartFridge;
using Content.Shared.DeltaV.SmartFridge;

namespace Content.Client._DV.SmartFridge;
namespace Content.Client.DeltaV.SmartFridge;

public sealed class SmartFridgeBoundUserInterface : BoundUserInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using Robust.Client.UserInterface.XAML;
using Robust.Shared.Prototypes;

namespace Content.Client._DV.SmartFridge;
namespace Content.Client.DeltaV.SmartFridge;

[GenerateTypedNameReferences]
public sealed partial class SmartFridgeItem : BoxContainer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
using Robust.Client.UserInterface.XAML;
using Robust.Client.UserInterface;
using Content.Client.UserInterface.Controls;
using Content.Shared._DV.SmartFridge;
using Content.Shared.DeltaV.SmartFridge;

namespace Content.Client._DV.SmartFridge;
namespace Content.Client.DeltaV.SmartFridge;

public record SmartFridgeListData(EntityUid Representative, SmartFridgeEntry Entry, int Amount) : ListData;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Content.Shared._DV.SmartFridge;
using Content.Shared.DeltaV.SmartFridge;
using Robust.Shared.Analyzers;

namespace Content.Client._DV.SmartFridge;
namespace Content.Client.DeltaV.SmartFridge;

public sealed class SmartFridgeUISystem : EntitySystem
{
Expand Down
4 changes: 2 additions & 2 deletions Content.Client/Entry/EntryPoint.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using Content.Client._White.ItemSlotRenderer;
using Content.Client.Administration.Managers;
using Content.Client.Changelog;
using Content.Client.Chat.Managers;
Expand All @@ -24,6 +23,7 @@
using Content.Client.Stylesheets;
using Content.Client.Viewport;
using Content.Client.Voting;
using Content.Client.WhiteDream.ItemSlotRenderer;
using Content.Shared.Ame.Components;
using Content.Shared.Gravity;
using Content.Shared.Localizations;
Expand Down Expand Up @@ -158,7 +158,7 @@ public override void PostInit()

_overlayManager.AddOverlay(new SingularityOverlay());
_overlayManager.AddOverlay(new RadiationPulseOverlay());
_overlayManager.AddOverlay(new SpriteToLayerBullshitOverlay()); // WD EDIT
_overlayManager.AddOverlay(new SpriteToLayerBullshitOverlay());
_chatManager.Initialize();
_clientPreferencesManager.Initialize();
_euiManager.Initialize();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
using Robust.Client.GameObjects;
using Robust.Client.Graphics;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Content.Client._White.ItemSlotRenderer;
namespace Content.Client.WhiteDream.ItemSlotRenderer;

[RegisterComponent]
public sealed partial class ItemSlotRendererComponent : Component
Expand Down
Original file line number Diff line number Diff line change
@@ -1,23 +1,14 @@
using Content.Client.Hands;
using Content.Shared.Containers.ItemSlots;
using Robust.Client.GameObjects;
using Robust.Client.Graphics;
using Robust.Client.Input;
using Robust.Shared.Containers;
using Robust.Shared.Enums;
using Robust.Shared.Graphics;
using Robust.Shared.Map;
using Robust.Shared.Player;
using Robust.Shared.Reflection;
using Robust.Shared.Timing;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Threading.Tasks;

namespace Content.Client._White.ItemSlotRenderer;
namespace Content.Client.WhiteDream.ItemSlotRenderer;

/// <summary>
/// I can feel my grip on reality slowly slipping.
Expand Down

This file was deleted.

17 changes: 0 additions & 17 deletions Content.Goobstation.Client/Devil/UI/RevivalContractMenu.xaml

This file was deleted.

46 changes: 0 additions & 46 deletions Content.Goobstation.Client/Devil/UI/RevivalContractMenu.xaml.cs

This file was deleted.

This file was deleted.

This file was deleted.

10 changes: 0 additions & 10 deletions Content.Goobstation.Shared/Possession/PossessionEvents.cs

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Content.Server._DV.StationEvents.Events;
using Content.Server.DeltaV.StationEvents.Events;

namespace Content.Server._DV.StationEvents.Components;
namespace Content.Server.DeltaV.StationEvents.Components;

[RegisterComponent, Access(typeof(ThavenMoodUpset))]
public sealed partial class ThavenMoodUpsetRuleComponent : Component;
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using Content.Server._DV.StationEvents.Components;
using Content.Server.DeltaV.StationEvents.Components;
using Content.Server._Impstation.Thaven;
using Content.Server.StationEvents.Events;
using Content.Shared._Impstation.Thaven.Components;
using Content.Shared.GameTicking.Components;

namespace Content.Server._DV.StationEvents.Events;
namespace Content.Server.DeltaV.StationEvents.Events;

public sealed class ThavenMoodUpset : StationEventSystem<ThavenMoodUpsetRuleComponent>
{
Expand Down
4 changes: 2 additions & 2 deletions Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using Content.Server._Impstation.Drone;
using Content.Shared.DeviceNetwork;
using Content.Shared.Emag.Components;
using Content.Shared.Movement.Components;
Expand All @@ -9,8 +10,7 @@
using Content.Server.DeviceNetwork.Systems;
using Content.Server.Explosion.Components;
using Robust.Shared.Utility;
using Content.Server._Imp.Drone; //Goobstation drone
using Robust.Shared.Player; //Goobstation drone
using Robust.Shared.Player;
namespace Content.Server.Silicons.Borgs;

/// <inheritdoc/>
Expand Down
Loading
Loading