Move some files out of Content.Shared root because I forgot (#4182)

This commit is contained in:
DrSmugleaf
2021-06-13 14:52:40 +02:00
committed by GitHub
parent dc239fb384
commit f878f353e4
173 changed files with 185 additions and 24 deletions

View File

@@ -2,7 +2,7 @@
using Robust.Shared;
using Robust.Shared.Configuration;
namespace Content.Shared
namespace Content.Shared.CCVar
{
// ReSharper disable once InconsistentNaming
[CVarDefs]

View File

@@ -2,9 +2,9 @@
using System;
using System.Collections.Generic;
using Content.Shared.CharacterAppearance;
using Content.Shared.Chemistry;
using Content.Shared.Chemistry.Reaction;
using Content.Shared.Chemistry.Reagent;
using Content.Shared.IoC;
using Content.Shared.Localizations;
using Content.Shared.Maps;
using Robust.Shared.ContentPack;
@@ -13,7 +13,7 @@ using Robust.Shared.Log;
using Robust.Shared.Map;
using Robust.Shared.Prototypes;
namespace Content.Shared
namespace Content.Shared.Entry
{
public class EntryPoint : GameShared
{

View File

@@ -1,5 +1,6 @@
using System.Linq;
using Content.Shared.Notification;
using Content.Shared.Notification.Managers;
using Content.Shared.Physics;
using JetBrains.Annotations;
using Robust.Shared.GameObjects;

View File

@@ -1,7 +1,7 @@
using Content.Shared.CharacterAppearance;
using Robust.Shared.IoC;
namespace Content.Shared
namespace Content.Shared.IoC
{
public static class SharedContentIoC
{

View File

@@ -2,7 +2,7 @@
using System;
using Robust.Shared.ContentPack;
namespace Content.Shared
namespace Content.Shared.Module
{
public abstract class SharedModuleTestingCallbacks : ModuleTestingCallbacks
{

View File

@@ -1,5 +1,6 @@
#nullable enable
using System;
using Content.Shared.CCVar;
using Content.Shared.NetIDs;
using Robust.Shared.Configuration;
using Robust.Shared.GameObjects;

View File

@@ -2,7 +2,7 @@
using Robust.Shared.IoC;
using Robust.Shared.Map;
namespace Content.Shared.Notification
namespace Content.Shared.Notification.Managers
{
/// <summary>
/// Allows the ability to create floating text messages at locations in the world.

View File

@@ -1,11 +1,10 @@
#nullable enable
using Content.Shared.Notification;
using Lidgren.Network;
using Robust.Shared.GameObjects;
using Robust.Shared.Map;
using Robust.Shared.Network;
namespace Content.Shared
namespace Content.Shared.Notification.Managers
{
public abstract class SharedNotifyManager : ISharedNotifyManager
{

View File

@@ -1,4 +1,5 @@
using System;
using Content.Shared.CCVar;
using Content.Shared.Movement.Components;
using JetBrains.Annotations;
using Robust.Shared;