diff --git a/Content.Client/GlobalUsings.cs b/Content.Client/GlobalUsings.cs new file mode 100644 index 0000000000..6304445d8a --- /dev/null +++ b/Content.Client/GlobalUsings.cs @@ -0,0 +1,12 @@ +// Global usings for Content.Client + +global using System; +global using System.Collections.Generic; +global using Robust.Shared.Analyzers; +global using Robust.Shared.Log; +global using Robust.Shared.Localization; +global using Robust.Shared.GameObjects; +global using Robust.Shared.IoC; +global using Robust.Shared.Maths; +global using Robust.Shared.ViewVariables; +global using Robust.Shared.Serialization.Manager.Attributes; diff --git a/Content.Server/GlobalUsings.cs b/Content.Server/GlobalUsings.cs new file mode 100644 index 0000000000..b2869444f4 --- /dev/null +++ b/Content.Server/GlobalUsings.cs @@ -0,0 +1,12 @@ +// Global usings for Content.Server + +global using System; +global using System.Collections.Generic; +global using Robust.Shared.Analyzers; +global using Robust.Shared.Log; +global using Robust.Shared.Localization; +global using Robust.Shared.GameObjects; +global using Robust.Shared.IoC; +global using Robust.Shared.Maths; +global using Robust.Shared.ViewVariables; +global using Robust.Shared.Serialization.Manager.Attributes; diff --git a/Content.Shared/GlobalUsings.cs b/Content.Shared/GlobalUsings.cs new file mode 100644 index 0000000000..d380dda30f --- /dev/null +++ b/Content.Shared/GlobalUsings.cs @@ -0,0 +1,15 @@ +// There isn't really a 'default place' to put these, +// so a file in the project top level directory it is + +global using System; +global using System.Collections.Generic; +global using Robust.Shared.Analyzers; +global using Robust.Shared.Log; +global using Robust.Shared.Localization; +global using Robust.Shared.GameObjects; +global using Robust.Shared.IoC; +global using Robust.Shared.Maths; +global using Robust.Shared.ViewVariables; +global using Robust.Shared.Serialization.Manager.Attributes; + +