2021-12-16 23:42:02 +13:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.GameStates;
|
2021-09-06 15:49:44 +02:00
|
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
|
|
2021-12-16 23:42:02 +13:00
|
|
|
namespace Content.Shared.Chemistry.Components
|
2021-09-06 15:49:44 +02:00
|
|
|
{
|
|
|
|
|
/// Allows the entity with this component to be placed in a <c>SharedReagentDispenserComponent</c>.
|
|
|
|
|
/// <para>Otherwise it's considered to be too large or the improper shape to fit.</para>
|
|
|
|
|
/// <para>Allows us to have obscenely large containers that are harder to abuse in chem dispensers
|
|
|
|
|
/// since they can't be placed directly in them.</para>
|
2021-12-16 23:42:02 +13:00
|
|
|
/// <see cref="Dispenser.SharedReagentDispenserComponent"/>
|
2021-09-06 15:49:44 +02:00
|
|
|
[RegisterComponent]
|
2021-12-16 23:42:02 +13:00
|
|
|
[NetworkedComponent] // only needed for white-lists. Client doesn't actually need Solution data;
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class FitsInDispenserComponent : Component
|
2021-09-06 15:49:44 +02:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Solution name that will interact with ReagentDispenserComponent.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
|
|
|
[DataField("solution")]
|
|
|
|
|
public string Solution { get; set; } = "default";
|
|
|
|
|
}
|
|
|
|
|
}
|