2021-09-06 15:49:44 +02:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
|
|
|
2021-10-29 13:40:15 +01:00
|
|
|
|
namespace Content.Server.Chemistry.Components.SolutionManager
|
2021-09-06 15:49:44 +02:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Denotes a solution which can be added with syringes.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
|
public class InjectableSolutionComponent : Component
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Solution name which can be added with syringes.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
|
[DataField("solution")]
|
|
|
|
|
|
public string Solution { get; set; } = "default";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|