14 lines
543 B
C#
14 lines
543 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; |