using Sandbox; using System.Collections.Generic; namespace VeloX; public abstract partial class VeloXBase { [Property] public List Wheels { get; set; } [Property] public TagSet WheelIgnoredTags { get; set; } public List FindWheels() => [.. Components.GetAll()]; [Button] public void SetupWheels() { Wheels = FindWheels(); } }