16 lines
711 B
C#
16 lines
711 B
C#
// <copyright file="GlobalUsings.cs" company="MUnique">
|
|
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
|
|
// </copyright>
|
|
|
|
#pragma warning disable SA1200 // Using directives should be placed correctly
|
|
|
|
global using System.ComponentModel.DataAnnotations;
|
|
|
|
global using Microsoft.Extensions.Logging;
|
|
|
|
global using MUnique.OpenMU.DataModel;
|
|
global using MUnique.OpenMU.DataModel.Configuration;
|
|
global using MUnique.OpenMU.DataModel.Entities;
|
|
global using MUnique.OpenMU.GameLogic.Properties;
|
|
global using MUnique.OpenMU.Persistence.Initialization.Properties;
|
|
global using PlugInResources = MUnique.OpenMU.Persistence.Initialization.Properties.PlugInResources; |