2021-03-26 12:02:41 +01:00
|
|
|
using System;
|
|
|
|
|
using Content.Shared.Chemistry;
|
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.GameObjects.Components.Chemistry
|
|
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
|
|
|
|
public class ReactiveComponent : Component
|
|
|
|
|
{
|
|
|
|
|
public override string Name => "Reactive";
|
|
|
|
|
|
2021-05-04 15:37:16 +02:00
|
|
|
[DataField("reactions", true, serverOnly:true)]
|
2021-03-26 12:02:41 +01:00
|
|
|
public ReagentEntityReaction[] Reactions { get; } = Array.Empty<ReagentEntityReaction>();
|
|
|
|
|
}
|
|
|
|
|
}
|