From d5b8449edb4ad37e3b09c36b894bafcaedaed213 Mon Sep 17 00:00:00 2001 From: mirrorcult Date: Sat, 5 Feb 2022 11:39:36 -0700 Subject: [PATCH] Global usings (#6472) --- Content.Client/GlobalUsings.cs | 12 ++++++++++++ Content.Server/GlobalUsings.cs | 12 ++++++++++++ Content.Shared/GlobalUsings.cs | 15 +++++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 Content.Client/GlobalUsings.cs create mode 100644 Content.Server/GlobalUsings.cs create mode 100644 Content.Shared/GlobalUsings.cs diff --git a/Content.Client/GlobalUsings.cs b/Content.Client/GlobalUsings.cs new file mode 100644 index 00000000000..6304445d8a4 --- /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 00000000000..b2869444f47 --- /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 00000000000..d380dda30f4 --- /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; + +