Editor/Assembly.cs

Global using directives for the Editor assembly. Imports common namespaces used across the Editor project, including Sandbox, diagnostics, node editor, and System.Text.Json types.

global using Sandbox;
global using Sandbox.Diagnostics;
global using Editor;
global using Editor.NodeEditor;
global using System;
global using System.Collections.Generic;
global using System.Linq;
global using System.Text.Json;
global using System.Text.Json.Nodes;
global using System.Text.Json.Serialization;
global using System.Threading;
global using System.Threading.Tasks;