Files
OldThink/Content.Shared/Chemistry/Reaction/ReactiveComponent.cs

17 lines
479 B
C#
Raw Normal View History

using System;
2021-06-09 22:19:39 +02:00
using Content.Shared.Chemistry.Reagent;
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Chemistry.Reaction
{
[RegisterComponent]
public class ReactiveComponent : Component
{
public override string Name => "Reactive";
[DataField("reactions", true, serverOnly:true)]
public ReagentEntityReaction[] Reactions { get; } = Array.Empty<ReagentEntityReaction>();
}
}