-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUsings.cs
More file actions
18 lines (16 loc) · 833 Bytes
/
Usings.cs
File metadata and controls
18 lines (16 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// -----------------------------------------------------------------------
// <copyright file="Usings.cs" company="Redforce04">
// Copyright (c) Redforce04. All rights reserved.
// Licensed under the CC BY-SA 3.0 license.
// </copyright>
// -----------------------------------------------------------------------
#pragma warning disable SA1200 // Using directives should be placed correctly
// global using ExEnums = Exiled.API.Enums;
// global using ExExtensions = Exiled.API.Extensions;
// global using ExFeatures = Exiled.API.Features;
global using ExHandlers = LabApi.Events.Handlers;
global using ExItem = LabApi.Features.Wrappers.Item;
global using ExPlayer = LabApi.Features.Wrappers.Player;
global using Log = BananaLibrary.API.Utils.BPLogger;
global using Type = System.Type;
global using UObject = UnityEngine.Object;