Delta-v/Content.Server/GameObjects/Components/Chemistry/GlassBeakerComponent.cs

11 lines
239 B
C#

using Robust.Shared.GameObjects;
namespace Content.Server.GameObjects.Components.Chemistry
{
[RegisterComponent]
public class GlassBeakerComponent : Component
{
public override string Name => "GlassBeaker";
}
}