| 123456789101112131415161718192021222324252627 |
- // SPDX-FileCopyrightText: 2024 deltanedas <39013340+deltanedas@users.noreply.github.com>
- // SPDX-FileCopyrightText: 2024 deltanedas <@deltanedas:kde.org>
- // SPDX-FileCopyrightText: 2024 gluesniffler <159397573+gluesniffler@users.noreply.github.com>
- // SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
- //
- // SPDX-License-Identifier: AGPL-3.0-or-later
- namespace Content.Shared._Shitmed.Medical.Surgery.Tools;
- public interface ISurgeryToolComponent
- {
- [DataField]
- public string ToolName { get; }
- /// <summary>
- /// Field intended for discardable or non-reusable tools.
- /// </summary>
- [DataField]
- public bool? Used { get; set; }
- /// <summary>
- /// Multiply the step's doafter by this value.
- /// This is per-type so you can have something that's a good scalpel but a bad retractor.
- /// </summary>
- [DataField]
- public float Speed { get; set; }
- }
|