21 lines
553 B
C#
21 lines
553 B
C#
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; }
|
|
}
|