// SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com> // SPDX-FileCopyrightText: 2025 Aviu00 <93730715+Aviu00@users.noreply.github.com> // SPDX-FileCopyrightText: 2025 Misandry // SPDX-FileCopyrightText: 2025 gus // // SPDX-License-Identifier: AGPL-3.0-or-later using System.Numerics; namespace Content.Server._Shitcode.Wizard.Components; /// /// This component is needed for accessing scale from server side. Required for HulkSystem /// [RegisterComponent] public sealed partial class ScaleDataComponent : Component { [DataField] public Vector2 Scale = Vector2.One; }