Code/Assembly.cs

Global using directives for the Vehicle Physics Kit assembly. It declares a set of global using statements so code in this assembly can reference Sandbox, System, and common collections and threading namespaces without repeating using lines.

// Global usings for the Vehicle Physics Kit assembly only. These do NOT export the kit's
// FieldGuide.VehiclePhysics namespace anywhere — a consumer references the kit types through
// their real namespace, never through a leaked global using.
global using Sandbox;
global using System;
global using System.Collections.Generic;
global using System.Linq;
global using System.Threading.Tasks;