mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
* source in my guidebook * finish it! * sir yes sir oorah * network that bitch, baby (cherry picked from commit f538a2e34a4b62ac406a5871a3c52e51f8f0fad4)
18 lines
465 B
C#
18 lines
465 B
C#
using Content.Shared.Chemistry.Components;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Kitchen.Components;
|
|
|
|
/// <summary>
|
|
/// Tag component that denotes an entity as Extractable
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class ExtractableComponent : Component
|
|
{
|
|
[DataField("juiceSolution")]
|
|
public Solution? JuiceSolution;
|
|
|
|
[DataField("grindableSolutionName")]
|
|
public string? GrindableSolution;
|
|
};
|