Code/GlobalUsings.cs

Global using directives for the Game project, enabling common namespaces (System, Collections, IO, Net, Http, Text.Json, Threading, and an internal LichessNET namespace) across files without repeated using statements.

NetworkingHttp Calls
#nullable enable annotations

global using System;
global using System.Collections.Generic;
global using System.IO;
global using System.Linq;
global using System.Net;
global using System.Net.Http;
global using System.Text;
global using System.Text.Json;
global using System.Text.Json.Serialization;
global using System.Threading;
global using System.Threading.Tasks;
global using LichessNET.Internal;